Searched defs:classPath (Results 1 - 25 of 66) 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/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/
H A DClassPath.java70 public boolean addAll(ClassPath classPath) argument
72 return classPathEntries.addAll(classPath.classPathEntries);
H A DDataEntryWriterFactory.java39 * @param classPath the output class path.
44 public static DataEntryWriter createDataEntryWriter(ClassPath classPath, argument
53 ClassPathEntry entry = classPath.get(index);
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 DConfigurationParser.java262 private ClassPath parseClassPathArgument(ClassPath classPath, argument
267 if (classPath == null)
269 classPath = new ClassPath();
345 classPath.add(entry);
349 return classPath;
H A DConfigurationWriter.java173 ClassPath classPath)
175 if (classPath != null)
177 for (int index = 0; index < classPath.size(); index++)
179 ClassPathEntry entry = classPath.get(index);
171 writeJarOptions(String inputEntryOptionName, String outputEntryOptionName, ClassPath classPath) argument
/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/main/java/org/jf/dexlib2/analysis/
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 DPrimitiveProto.java43 protected final ClassPath classPath; field in class:PrimitiveProto
46 public PrimitiveProto(@Nonnull ClassPath classPath, @Nonnull String type) { argument
47 this.classPath = classPath;
52 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
H A DUnknownClassProto.java42 @Nonnull protected final ClassPath classPath; field in class:UnknownClassProto
44 public UnknownClassProto(@Nonnull ClassPath classPath) { argument
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);
80 return classPath.getClass("Ljava/lang/Object;").getMethodByVtableIndex(vtableIndex);
84 return classPath.getClass("Ljava/lang/Object;").findMethodIndexInVtable(method);
H A DArrayProto.java46 protected final ClassPath classPath; field in class:ArrayProto
50 public ArrayProto(@Nonnull ClassPath classPath, @Nonnull String type) { argument
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);
113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType);
121 return classPath.getClass(makeArrayType(mergedClass.getType(), dimensions));
125 return classPath
[all...]
H A DClassPath.java168 public static ClassPath fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFile dexFile, argument
170 return fromClassPath(classPathDirs, classPath, dexFile, api, api == 17, experimental);
174 public static ClassPath fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFile dexFile, argument
180 for (String classPathEntry: classPath) {
200 public static ClassPath fromClassPath(Iterable<String> classPathDirs, Iterable<String> classPath, DexFile dexFile, argument
205 for (String classPathEntry: classPath) {
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
H A DCommonSuperclassTest.java54 private final ClassPath classPath; field in class:CommonSuperclassTest
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/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetProviderICU.java85 * @param classPath The class path that contain the conversion table.
89 public final Charset charsetForName(String charsetName, String classPath) { argument
90 return charsetForName(charsetName, classPath, null);
97 * @param classPath The class path that contain the conversion table.
102 public Charset charsetForName(String charsetName, String classPath, ClassLoader loader) { argument
105 cs = new CharsetMBCS(charsetName, charsetName, new String[0], classPath, loader);
/external/proguard/src/proguard/ant/
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);
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...]
/external/vogar/src/vogar/target/
H A DClassPathScanner.java47 private final String[] classPath; field in class:ClassPathScanner
51 classPath = getClassPath();
94 for (String entry : classPath) {
272 String classPath = System.getProperty("java.class.path");
274 return classPath.split(Pattern.quote(separator));
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassPathIterator.java43 public ClassPathIterator(String classPath) throws IOException { argument
44 this(new File(System.getProperty("user.dir")), classPath, null);
47 public ClassPathIterator(File parent, String classPath, String delim) throws IOException { argument
51 StringTokenizer st = new StringTokenizer(classPath, delim);
/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/objenesis/main/src/test/java/org/objenesis/
H A DClassReader.java238 public void readClass(String classPath) throws IOException { argument
240 if(classPath.startsWith("classpath:")) {
241 String className = classPath.substring("classpath:".length());
246 iin = new FileInputStream(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/smali/baksmali/src/main/java/org/jf/baksmali/
H A DbaksmaliOptions.java83 public ClassPath classPath = null; field in class:baksmaliOptions

Completed in 449 milliseconds

123