Searched refs:classPath (Results 1 - 25 of 62) sorted by relevance

123

/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DPathClass.java21 private String classPath; field in class:PathClass
24 public PathClass(String classPath, String className) { argument
25 this.classPath = classPath;
30 return classPath;
38 return classPath + "!" + className;
H A DStringDumper.java28 public void run(String classPath, PrintWriter pw) throws IOException { argument
30 ClassPathIterator cp = new ClassPathIterator(classPath);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DUnknownClassProto.java41 @Nonnull protected final ClassPath classPath; field in class:UnknownClassProto
43 public UnknownClassProto(@Nonnull ClassPath classPath) { argument
44 this.classPath = classPath;
48 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
60 return classPath.getClass("Ljava/lang/Object;");
73 return classPath.getClass("Ljava/lang/Object;").getFieldByOffset(fieldOffset);
79 return classPath.getClass("Ljava/lang/Object;").getMethodByVtableIndex(vtableIndex);
H A DPrimitiveProto.java42 protected final ClassPath classPath; field in class:PrimitiveProto
45 public PrimitiveProto(@Nonnull ClassPath classPath, @Nonnull String type) { argument
46 this.classPath = classPath;
51 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
H A DArrayProto.java45 protected final ClassPath classPath; field in class:ArrayProto
49 public ArrayProto(@Nonnull ClassPath classPath, @Nonnull String type) { argument
50 this.classPath = classPath;
68 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
107 return classPath.getClass("Ljava/lang/Object;");
111 TypeProto thisClass = classPath.getClass(elementType);
112 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
120 return classPath.getClass(makeArrayType(mergedClass.getType(), dimensions));
124 return classPath
[all...]
H A DCustomInlineMethodResolver.java52 @Nonnull private final ClassPath classPath; field in class:CustomInlineMethodResolver
55 public CustomInlineMethodResolver(@Nonnull ClassPath classPath, @Nonnull String inlineTable) { argument
56 this.classPath = classPath;
84 public CustomInlineMethodResolver(@Nonnull ClassPath classPath, @Nonnull File inlineTable) throws IOException { argument
85 this(classPath, Files.toString(inlineTable, Charset.forName("UTF-8")));
120 TypeProto typeProto = classPath.getClass(className);
H A DClassPath.java65 * @param classPath An array of DexFile objects. When loading a class, these dex files will be searched in order
67 public ClassPath(DexFile... classPath) throws IOException { argument
68 this(Lists.newArrayList(classPath), 15);
74 * @param classPath An iterable of DexFile objects. When loading a class, these dex files will be searched in order
77 public ClassPath(@Nonnull Iterable<DexFile> classPath, int api) { argument
78 this(Lists.newArrayList(classPath), api == 17);
84 * @param classPath An iterable of DexFile objects. When loading a class, these dex files will be searched in order
87 public ClassPath(@Nonnull Iterable<DexFile> classPath, boolean checkPackagePrivateAccess) { argument
89 Iterable<DexFile> dexFiles = Iterables.concat(classPath, Lists.newArrayList(getBasicClasses()));
166 public static ClassPath fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFil argument
172 fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFile dexFile, int api, boolean checkPackagePrivateAccess) argument
[all...]
H A DClassProto.java63 @Nonnull protected final ClassPath classPath; field in class:ClassProto
69 public ClassProto(@Nonnull ClassPath classPath, @Nonnull String type) { argument
73 this.classPath = classPath;
78 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
89 return classPath.getClassDef(type);
135 interfaceDef = classPath.getClassDef(interfaceType);
142 ClassProto interfaceProto = (ClassProto) classPath.getClass(interfaceType);
167 ClassProto superclassProto = (ClassProto) classPath.getClass(superclass);
314 return classPath
[all...]
H A DMethodAnalyzer.java77 @Nonnull private final ClassPath classPath; field in class:MethodAnalyzer
95 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method, argument
97 this.classPath = classPath;
158 classPath.getClass(method.getDefiningClass())));
162 classPath.getClass(method.getDefiningClass())));
297 RegisterType.getRegisterType(classPath, parameter));
1028 resultRegisterType = RegisterType.getRegisterType(classPath, ((MethodReference)reference).getReturnType());
1030 resultRegisterType = RegisterType.getRegisterType(classPath, (TypeReference)reference);
1048 classPath
[all...]
/external/proguard/src/proguard/wtk/
H A DProGuardObfuscator.java66 String classPath,
82 configuration.libraryJars = classPath(classPath);
113 private ClassPath classPath(String classPathString) method in class:ProGuardObfuscator
115 ClassPath classPath = new ClassPath();
134 classPath.add(classPathEntry);
140 return classPath;
61 run(File obfuscatedJarFile, String wtkBinDir, String wtkLibDir, String jarFileName, String projectDirName, String classPath, String emptyAPI) argument
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/
H A DSuperclassChainTest.java59 ClassPath classPath = new ClassPath(new ImmutableDexFile(classes));
61 TypeProto objectClassProto = classPath.getClass("Ljava/lang/Object;");
62 TypeProto oneClassProto = classPath.getClass("Ltest/one;");
63 TypeProto twoClassProto = classPath.getClass("Ltest/two;");
64 TypeProto threeClassProto = classPath.getClass("Ltest/three;");
90 ClassPath classPath = new ClassPath(new ImmutableDexFile(classes));
92 TypeProto unknownClassProto = classPath.getUnknownClass();
93 TypeProto oneClassProto = classPath.getClass("Ltest/one;");
94 TypeProto twoClassProto = classPath.getClass("Ltest/two;");
95 TypeProto threeClassProto = classPath
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
H A DAbstractClassLoader.java30 private ClassLoader classPath; field in class:AbstractClassLoader
44 protected AbstractClassLoader(ClassLoader parent, ClassLoader classPath, ClassFilter filter) { argument
47 this.classPath = classPath;
66 java.io.InputStream is = classPath.getResourceAsStream(
/external/proguard/src/proguard/
H A DClassPath.java70 public boolean addAll(ClassPath classPath) argument
72 return classPathEntries.addAll(classPath.classPathEntries);
H A DInputReader.java133 ClassPath classPath,
137 classPath,
139 classPath.size(),
148 ClassPath classPath,
155 ClassPathEntry entry = classPath.get(index);
132 readInput(String messagePrefix, ClassPath classPath, DataEntryReader reader) argument
147 readInput(String messagePrefix, ClassPath classPath, int fromIndex, int toIndex, DataEntryReader reader) argument
H A DOutputWriter.java97 ClassPath classPath,
108 DataEntryWriterFactory.createDataEntryWriter(classPath,
177 classPath,
187 throw (IOException)new IOException("Can't write [" + classPath.get(fromOutputIndex).getName() + "] (" + ex.getMessage() + ")").initCause(ex);
96 writeOutput(ClassPool programClassPool, ClassPath classPath, int fromInputIndex, int fromOutputIndex, int toOutputIndex) argument
H A DDataEntryWriterFactory.java39 * @param classPath the output class path.
44 public static DataEntryWriter createDataEntryWriter(ClassPath classPath, argument
53 ClassPathEntry entry = classPath.get(index);
/external/proguard/src/proguard/ant/
H A DConfigurationTask.java331 private ClassPath extendClassPath(ClassPath classPath, argument
335 if (classPath == null)
337 classPath = new ClassPath();
340 classPathElement.appendClassPathEntriesTo(classPath,
343 return classPath;
347 private ClassPath extendClassPath(ClassPath classPath, argument
352 if (classPath == null)
354 classPath = new ClassPath();
357 classPath.addAll(additionalClassPath);
360 return classPath;
[all...]
H A DClassPathElement.java58 * @param classPath the class path to be extended.
61 public void appendClassPathEntriesTo(ClassPath classPath, boolean output) argument
133 classPath.add(entry);
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidationContentHandler.java117 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/
H A DCustomMethodInlineTableTest.java71 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
73 InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V");
74 MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver);
98 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
100 InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V");
101 MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver);
125 ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
127 InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V");
128 MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver);
H A DCommonSuperclassTest.java53 private final ClassPath classPath; field in class:CommonSuperclassTest
56 classPath = new ClassPath(new ImmutableDexFile(ImmutableSet.of(
93 TypeProto commonSuperclassProto = classPath.getClass(commonSuperclass);
94 TypeProto type1Proto = classPath.getClass(type1);
95 TypeProto type2Proto = classPath.getClass(type2);
130 classPath.getClass(onetwo).getCommonSuperclass(new ClassProto(classPath, onetwo)).getType());
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java41 protected LoaderClassPath classPath; field in class:ScopedClassPool
86 classPath = new LoaderClassPath(cl);
87 this.insertClassPath(classPath);
119 this.removeClassPath(classPath);
120 classPath.close();
/external/emma/tools/java/com/vladium/tools/
H A DClassDep.java51 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) argument
104 if (classPath == null)
105 throw new IllegalArgumentException ("null input: classPath");
108 m_classPath = classPath;
/external/proguard/src/proguard/gui/
H A DClassPathPanel.java207 public void setClassPath(ClassPath classPath) argument
211 if (classPath != null)
213 for (int index = 0; index < classPath.size(); index++)
215 listModel.addElement(classPath.get(index));
236 ClassPath classPath = new ClassPath();
239 classPath.add((ClassPathEntry)listModel.get(index));
242 return classPath;
/external/vogar/src/vogar/target/
H A DClassPathScanner.java47 private final String[] classPath; field in class:ClassPathScanner
51 classPath = getClassPath();
85 for (String entry : classPath) {
230 String classPath = System.getProperty("java.class.path");
232 return classPath.split(Pattern.quote(separator));

Completed in 8441 milliseconds

123