/aosp12/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
H A D | TopLevelBatteryPreferenceController.java | 153 protected static ComponentName convertClassPathToComponentName(String classPath) { in convertClassPathToComponentName() argument 154 if (classPath == null || classPath.isEmpty()) { in convertClassPathToComponentName() 157 String[] split = classPath.split("\\."); in convertClassPathToComponentName() 162 int lastPkgIndex = classPath.length() - split[classNameIndex].length() - 1; in convertClassPathToComponentName() 163 String pkgName = lastPkgIndex > 0 ? classPath.substring(0, lastPkgIndex) : ""; in convertClassPathToComponentName()
|
/aosp12/frameworks/base/test-runner/src/android/test/ |
H A D | ClassPathPackageInfoSource.java | 55 private final String[] classPath; field in ClassPathPackageInfoSource 61 classPath = getClassPath(); in ClassPathPackageInfoSource() 114 for (String entryName : classPath) { in findClasses() 205 String classPath = System.getProperty("java.class.path"); in getClassPath() local 207 return classPath.split(Pattern.quote(separator)); in getClassPath()
|
/aosp12/frameworks/base/core/java/com/android/internal/os/ |
H A D | ZygoteInit.java | 648 static ClassLoader createPathClassLoader(String classPath, int targetSdkVersion) { in createPathClassLoader() argument 654 return ClassLoaderFactory.createClassLoader(classPath, libraryPath, libraryPath, in createPathClassLoader() 662 private static void performSystemServerDexOpt(String classPath) { in performSystemServerDexOpt() argument 663 final String[] classPathElements = classPath.split(":"); in performSystemServerDexOpt() 729 private static String getSystemServerClassLoaderContext(String classPath) { in getSystemServerClassLoaderContext() argument 730 return classPath == null ? "PCL[]" : "PCL[" + classPath + "]"; in getSystemServerClassLoaderContext() 741 private static String encodeSystemServerClassPath(String classPath, String newElement) { in encodeSystemServerClassPath() argument 742 return (classPath == null || classPath.isEmpty()) in encodeSystemServerClassPath() 744 : classPath + ":" + newElement; in encodeSystemServerClassPath()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/core/codeinspection/ |
H A D | ClassScanner.java | 37 ClassPath classPath = ClassPath.from(classLoader); in getClassesForPackage() local 46 for (ClassPath.ClassInfo info : classPath.getAllClasses()) { in getClassesForPackage()
|
/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/core/codeinspection/ |
H A D | ClassScanner.java | 37 ClassPath classPath = ClassPath.from(classLoader); in getClassesForPackage() local 46 for (ClassPath.ClassInfo info : classPath.getAllClasses()) { in getClassesForPackage()
|
/aosp12/frameworks/base/services/tests/mockingservicestests/src/com/android/server/pm/dex/ |
H A D | DexManagerTests.java | 555 String classPath = String.join(File.pathSeparator, mBarUser0.getSecondaryDexPaths()); in testNotifySupportedAndUnsupportedClassLoader() local 558 List<String> classPaths = Arrays.asList(classPath, classPath); in testNotifySupportedAndUnsupportedClassLoader()
|
/aosp12/frameworks/base/core/jni/android/opengl/ |
H A D | util.cpp | 1037 const char* classPath; member 1054 result = RegisterMethodsOrDie(env, cri->classPath, cri->methods, cri->methodCount); in register_android_opengl_classes()
|
/aosp12/build/soong/java/ |
H A D | base.go | 816 classPath := flags.classpath.FormJavaClassPath("") 817 if classPath != "" { 818 patchPaths = append(patchPaths, classPath)
|
/aosp12/art/runtime/native/ |
H A D | dalvik_system_VMRuntime.cc | 513 NATIVE_METHOD(VMRuntime, classPath, "()Ljava/lang/String;"),
|
/aosp12/art/build/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o-low-priority.txt | 1532 Ldalvik/system/VMRuntime;->classPath()Ljava/lang/String;
|