/external/jarjar/src/main/com/tonicsystems/jarjar/ |
PathClass.java | 21 private String classPath; 24 public PathClass(String classPath, String className) { 25 this.classPath = classPath; 30 return classPath; 38 return classPath + "!" + className;
|
StringDumper.java | 28 public void run(String classPath, PrintWriter pw) throws IOException { 30 ClassPathIterator cp = new ClassPathIterator(classPath);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
UnknownClassProto.java | 42 @Nonnull protected final ClassPath classPath; 44 public UnknownClassProto(@Nonnull ClassPath classPath) { 45 this.classPath = classPath; 49 @Nonnull @Override public ClassPath getClassPath() { return classPath; } 61 return classPath.getClass("Ljava/lang/Object;"); 74 return classPath.getClass("Ljava/lang/Object;").getFieldByOffset(fieldOffset) [all...] |
ArrayProto.java | 46 protected final ClassPath classPath; 50 public ArrayProto(@Nonnull ClassPath classPath, @Nonnull String type) { 51 this.classPath = classPath; 69 @Nonnull @Override public ClassPath getClassPath() { return classPath; } 108 return classPath.getClass("Ljava/lang/Object;"); 112 TypeProto thisClass = classPath.getClass(elementType) [all...] |
PrimitiveProto.java | 43 protected final ClassPath classPath; 46 public PrimitiveProto(@Nonnull ClassPath classPath, @Nonnull String type) { 47 this.classPath = classPath; 52 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
|
CustomInlineMethodResolver.java | 52 @Nonnull private final ClassPath classPath; 55 public CustomInlineMethodResolver(@Nonnull ClassPath classPath, @Nonnull String inlineTable) { 56 this.classPath = classPath; 84 public CustomInlineMethodResolver(@Nonnull ClassPath classPath, @Nonnull File inlineTable) throws IOException { 85 this(classPath, Files.toString(inlineTable, Charset.forName("UTF-8"))); 120 TypeProto typeProto = classPath.getClass(className) [all...] |
ClassProto.java | 67 @Nonnull protected final ClassPath classPath; 73 public ClassProto(@Nonnull ClassPath classPath, @Nonnull String type) { 77 this.classPath = classPath; 82 @Nonnull @Override public ClassPath getClassPath() { return classPath; } 93 return classPath.getClassDef(type); 139 interfaceDef = classPath.getClassDef(interfaceType) [all...] |
AnalyzedMethodUtil.java | 61 ClassPath classPath = type.getClassPath(); 62 ClassDef methodClassDef = classPath.getClassDef(virtualMethod.getDefiningClass());
|
/external/proguard/src/proguard/wtk/ |
ProGuardObfuscator.java | 40 * obfuscator.runner.classpath: /usr/local/java/proguard1.6/lib/proguard.jar 66 String classPath, 82 configuration.libraryJars = classPath(classPath); 85 configuration.programJars = new ClassPath(); 111 * Converts the given class path String into a ClassPath object. 113 private ClassPath classPath(String classPathString) 115 ClassPath classPath = new ClassPath() [all...] |
/cts/tools/vm-tests-tf/src/util/build/ |
JavacBuildStep.java | 29 private final String classPath; 31 public JavacBuildStep(String destPath, String classPath) { 34 this.classPath = classPath; 60 commandLine[0] = "-classpath"; 61 commandLine[1] = classPath; 85 && classPath.equals(other.classPath) 93 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
|
JackBuildStep.java | 31 private final String classPath; 34 public JackBuildStep(String destPath, String classPath) { 37 this.classPath = classPath; 82 commandLine.add("--classpath"); 83 commandLine.add(classPath); 128 return destPath.equals(other.destPath) && classPath.equals(other.classPath) 136 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/ |
SuperclassChainTest.java | 38 import org.jf.dexlib2.analysis.ClassPath; 60 ClassPath classPath = new ClassPath(new DexClassProvider(new ImmutableDexFile(Opcodes.forApi(19), classes))); 62 TypeProto objectClassProto = classPath.getClass("Ljava/lang/Object;"); 63 TypeProto oneClassProto = classPath.getClass("Ltest/one;"); 64 TypeProto twoClassProto = classPath.getClass("Ltest/two;"); 65 TypeProto threeClassProto = classPath.getClass("Ltest/three;"); 91 ClassPath classPath = new ClassPath(new DexClassProvider(new ImmutableDexFile(Opcodes.forApi(19), classes))) [all...] |
/external/icu/icu4j/perf-tests/ |
collationperf.pl | 41 $classPath = "out\\lib\\icu4j-perf-tests.jar;..\\icu4j.jar"; 43 $classPath = "out/lib/icu4j-perf-tests.jar:../icu4j.jar"; 76 $iStrCol = `java -classpath $classPath com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -binsearch`; 78 doKeyTimes("java -classpath $classPath com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -keygen", 88 $wStrCol = `java -classpath $classPath com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $locale -loop 1000 -binsearch -java`; 90 doKeyTimes("java -classpath $classPath com.ibm.icu.dev.test.perf.CollationPerformanceTest -terse -file data/collation/$data -locale $loca (…) [all...] |
/frameworks/base/test-runner/src/junit/runner/ |
ClassPathTestCollector.java | 23 String classPath= System.getProperty("java.class.path"); 24 Hashtable result = collectFilesInPath(classPath); 28 public Hashtable collectFilesInPath(String classPath) { 29 Hashtable result= collectFilesInRoots(splitClassPath(classPath)); 57 Vector splitClassPath(String classPath) { 60 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
AbstractClassLoader.java | 30 private ClassLoader classPath; 44 protected AbstractClassLoader(ClassLoader parent, ClassLoader classPath, ClassFilter filter) { 47 this.classPath = classPath; 66 java.io.InputStream is = classPath.getResourceAsStream(
|
/external/proguard/src/proguard/ |
ClassPath.java | 31 public class ClassPath 70 public boolean addAll(ClassPath classPath) 72 return classPathEntries.addAll(classPath.classPathEntries);
|
InputReader.java | 133 ClassPath classPath, 137 classPath, 139 classPath.size(), 148 ClassPath classPath, 155 ClassPathEntry entry = classPath.get(index);
|
OutputWriter.java | 56 ClassPath programJars = configuration.programJars; 97 ClassPath classPath, 108 DataEntryWriterFactory.createDataEntryWriter(classPath, 177 classPath, 187 throw (IOException)new IOException("Can't write [" + classPath.get(fromOutputIndex).getName() + "] (" + ex.getMessage() + ")").initCause(ex);
|
/external/smali/baksmali/src/test/java/org/jf/baksmali/ |
FieldGapOrderTest.java | 35 import org.jf.dexlib2.analysis.ClassPath; 48 ClassPath classPath = new ClassPath(Lists.newArrayList(new DexClassProvider(dexFile)), false, 66); 49 ClassProto classProto = (ClassProto)classPath.getClass("LGapOrder;"); 62 ClassPath classPath = new ClassPath(Lists.newArrayList(new DexClassProvider(dexFile)), false, 67); 63 ClassProto classProto = (ClassProto)classPath.getClass("LGapOrder;");
|
/cts/tools/cts-java-scanner/src/com/android/cts/javascanner/ |
DocletRunner.java | 45 args.add("-classpath"); 89 List<String> classPath = new ArrayList<String>(); 90 classPath.add("./prebuilts/misc/common/tradefed/tradefed-prebuilt.jar"); 91 classPath.add("./prebuilts/misc/common/ub-uiautomator/ub-uiautomator.jar"); 92 classPath.add("./prebuilts/misc/common/ub-janktesthelper/ub-janktesthelper.jar"); 93 return join(classPath, ":");
|
/external/proguard/src/proguard/ant/ |
ConfigurationTask.java | 331 private ClassPath extendClassPath(ClassPath classPath, 335 if (classPath == null) 337 classPath = new ClassPath(); 340 classPathElement.appendClassPathEntriesTo(classPath, 343 return classPath; 347 private ClassPath extendClassPath(ClassPath classPath [all...] |
/external/eyes-free/AccessCheck/src/com/android/accessibility/ |
AccessibilityValidationContentHandler.java | 117 String classPath = "android.widget." + localName; 119 potentialClass = sValidationClassLoader.loadClass(classPath); 127 if (mExclusionList.contains(classPath)) { 130 mExclusionList.add(classPath);
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
CustomMethodInlineTableTest.java | 72 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile, 74 InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V"); 75 MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver, false); 99 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile, 101 InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V"); 102 MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver, false) [all...] |
/external/javassist/src/main/javassist/scopedpool/ |
ScopedClassPool.java | 41 protected LoaderClassPath classPath; 86 classPath = new LoaderClassPath(cl); 87 this.insertClassPath(classPath); 119 this.removeClassPath(classPath); 120 classPath.close();
|
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 48 throw new IllegalArgumentException ("usage: classpath output_file rootset_classname_1 [rootset_classname_2 ...]"); 51 final URL [] classPath; 54 classPath = new URL [tokenizer.countTokens ()]; 58 classPath [i] = new File (tokenizer.nextToken ()).toURL (); 75 final ClassDep _this = new ClassDep (rootSet, classPath); 99 public ClassDep (final String [] rootSet, final URL [] classPath) 104 if (classPath == null) 105 throw new IllegalArgumentException ("null input: classPath"); 108 m_classPath = classPath; 148 throw new IllegalArgumentException ("class [" + Descriptors.vmNameToJavaName (classVMName) + "] not found in the input classpath"); [all...] |