/external/proguard/src/proguard/gui/ |
ClassPathPanel.java | 34 * remove ClassPathEntry objects in a ClassPath object. 205 * Sets the ClassPath to be represented in this panel. 207 public void setClassPath(ClassPath classPath) 211 if (classPath != null) 213 for (int index = 0; index < classPath.size(); index++) 215 listModel.addElement(classPath.get(index)); 226 * Returns the ClassPath currently represented in this panel. 228 public ClassPath getClassPath() 236 ClassPath classPath = new ClassPath() [all...] |
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
CommonSuperclassTest.java | 54 private final ClassPath classPath; 57 classPath = new ClassPath(new DexClassProvider(new ImmutableDexFile(Opcodes.forApi(19), 97 TypeProto commonSuperclassProto = classPath.getClass(commonSuperclass); 98 TypeProto type1Proto = classPath.getClass(type1); 99 TypeProto type2Proto = classPath.getClass(type2); 134 classPath.getClass(onetwo).getCommonSuperclass(new ClassProto(classPath, onetwo)).getType());
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
MethodAnalyzer.java | 69 * Before calling the analyze() method, you must have initialized the ClassPath by calling 70 * ClassPath.InitializeClassPath 80 @Nonnull private final ClassPath classPath; 98 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method, 100 this.classPath = classPath; 162 classPath.getClass(method.getDefiningClass()))); 166 classPath.getClass(method.getDefiningClass()))) [all...] |
ClassPath.java | 62 public class ClassPath { 71 * Creates a new ClassPath instance that can load classes from the given providers 76 public ClassPath(ClassProvider... classProviders) throws IOException { 81 * Creates a new ClassPath instance that can load classes from the given providers 89 public ClassPath(@Nonnull Iterable<? extends ClassProvider> classProviders, boolean checkPackagePrivateAccess, 138 return new ArrayProto(ClassPath.this, type); 140 return new ClassProto(ClassPath.this, type); 168 public static ClassPath fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFile dexFile, 170 return fromClassPath(classPathDirs, classPath, dexFile, api, api == 17, experimental) [all...] |
DumpFields.java | 116 ClassPath classPath = ClassPath.fromClassPath(bootClassPathDirs, bootClassPaths, dexFile, apiLevel, experimental); 120 ClassProto classProto = (ClassProto) classPath.getClass(classDef);
|
DumpVtables.java | 114 ClassPath classPath = ClassPath.fromClassPath(bootClassPathDirs, bootClassPaths, dexFile, apiLevel, experimental); 118 ClassProto classProto = (ClassProto) classPath.getClass(classDef);
|
/external/opencv3/platforms/scripts/ |
ABI_compat_generator.py | 59 classPath = os.path.join(managerDir, 'sdk/java/bin/classes') 60 if not os.path.exists(classPath): 61 print('Error: no Java classes found in \'%s\'' % classPath) 64 allJavaClasses = GetClasses(classPath, '') 70 os.system('javah -d %s -classpath %s:%s %s' % (javahHeaders, classPath, \
|
/external/vogar/src/vogar/target/ |
ClassPathScanner.java | 32 * Inspects the classpath to return the classes in a requested package. This 33 * class doesn't yet traverse directories on the classpath. 47 private final String[] classPath; 51 classPath = getClassPath(); 85 for (String entry : classPath) { 230 String classPath = System.getProperty("java.class.path"); 232 return classPath.split(Pattern.quote(separator));
|
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfoSource.java | 56 private final String[] classPath; 64 classPath = getClassPath(); 113 for (String entryName : classPath) { 116 // Forge may not have brought over every item in the classpath. Be 130 throw new AssertionError("Can't read classpath entry " + 305 String classPath = System.getProperty("java.class.path"); 307 return classPath.split(Pattern.quote(separator));
|
/external/proguard/src/proguard/ |
DataEntryWriterFactory.java | 39 * @param classPath the output class path. 44 public static DataEntryWriter createDataEntryWriter(ClassPath classPath, 53 ClassPathEntry entry = classPath.get(index);
|
/external/proguard/src/proguard/ant/ |
ClassPathElement.java | 58 * @param classPath the class path to be extended. 61 public void appendClassPathEntriesTo(ClassPath classPath, boolean output) 133 classPath.add(entry);
|
/libcore/support/src/test/java/tests/util/ |
ClassLoaderBuilder.java | 32 * exists on the classpath. 78 * uses the same classpath as the application class loader. It loads 105 String classPath = getApplicationClassPath(); 108 .newInstance(classPath, bridge); 113 List<URL> classpath = new ArrayList<URL>(); local 114 classpath.addAll(classpathToUrls("java.class.path")); 115 classpath.addAll(classpathToUrls("sun.boot.class.path")); 116 return new URLClassLoader(classpath.toArray(new URL[classpath.size()]), bridge); 140 String classpath = System.getProperty(propertyName) local [all...] |
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
CharsetProviderICU.java | 82 * @param classPath The class path that contain the conversion table. 86 public final Charset charsetForName(String charsetName, String classPath) { 87 return charsetForName(charsetName, classPath, null); 94 * @param classPath The class path that contain the conversion table. 99 public Charset charsetForName(String charsetName, String classPath, ClassLoader loader) { 102 cs = new CharsetMBCS(charsetName, charsetName, new String[0], classPath, loader);
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
ClassPathIterator.java | 43 public ClassPathIterator(String classPath) throws IOException { 44 this(new File(System.getProperty("user.dir")), classPath, null); 47 public ClassPathIterator(File parent, String classPath, String delim) throws IOException { 51 StringTokenizer st = new StringTokenizer(classPath, delim);
|
/external/vogar/src/vogar/ |
ClassFileIndex.java | 50 /** regular expressions representing things that make sense on the classpath */ 54 /** regular expressions representing failures probably due to things missing on the classpath */ 163 String classPath = jarEntry.getName() 167 if (classFileMap.containsKey(classPath)) { 168 classFileMap.get(classPath).add(file); 172 classFileMap.put(classPath, classPathJars);
|
/frameworks/base/test-runner/src/junit/runner/ |
TestCaseClassLoader.java | 50 public TestCaseClassLoader(String classPath) { 51 scanPath(classPath); 55 private void scanPath(String classPath) { 58 StringTokenizer st= new StringTokenizer(classPath, separator);
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldFileTest.java | 165 String classPath = url.toString(); 166 int idx = classPath.indexOf("!"); 168 classPath = classPath.substring(9, idx); // cutting off jar:file:
|
/hardware/intel/common/utils/ituxd/src/com/intel/thermal/ |
ThermalCooling.java | 523 String classPath = device.getClassPath(); 525 if (classPath == null) { 526 Log.i(TAG, "ClassPath not found"); 530 if (classPath.equalsIgnoreCase("none") || classPath.equalsIgnoreCase("auto") 531 || classPath.equalsIgnoreCase("AppAgent")) { 532 Log.i(TAG, "ClassPath: none/auto/AppAgent"); 538 cls = Class.forName(classPath); 541 Log.i(TAG, "Unable to load class " + classPath); 558 Log.i(TAG, "NoSuchMethodException caught in device class init: " + classPath); [all...] |
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
TestHelper_ClassLoader.java | 52 String classPath = System.getProperty("java.class.path"); 53 // System.out.println("Test class loader - classpath = " + classPath ); 56 String[] theClassPaths = classPath.split(theSeparator);
|
/external/vogar/src/vogar/commands/ |
Jack.java | 166 public Jack setClassPath(String classPath) { 167 builder.args("-cp", classPath);
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
baksmaliOptions.java | 35 import org.jf.dexlib2.analysis.ClassPath; 83 public ClassPath classPath = null;
|
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
WorkerProcess.java | 204 String classPath = vmConfig.workerClassPath(); 205 Collections.addAll(args, "-cp", classPath); 206 logger.finer(String.format("Class path: %s", classPath));
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebAppClassLoader.java | 49 * system classes are loaded from the classpath in preference to the 213 * @param classPath Comma or semicolon separated path of filenames or URLs 217 public void addClassPath(String classPath) 220 if (classPath == null) 223 StringTokenizer tokenizer= new StringTokenizer(classPath, ",;"); 252 * @param file Checks if this file type can be added to the classpath.
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
SmaliMethod.java | 53 import org.jf.dexlib2.analysis.ClassPath; 318 ClassPath classPath; 320 classPath = new ClassPath( 327 methodAnalyzer = new MethodAnalyzer(classPath, new SmalideaMethod(SmaliMethod.this), null, false);
|
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/ |
root_list.js | 55 $('<td class="class-path">').text(infoMap.classPath).appendTo(row);
|