HomeSort by relevance Sort by last modified time
    Searched defs:classPath (Results 1 - 25 of 139) sorted by null

1 2 3 4 5 6

  /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;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
PrimitiveProto.java 42 protected final ClassPath classPath;
45 public PrimitiveProto(@Nonnull ClassPath classPath, @Nonnull String type) {
46 this.classPath = classPath;
51 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
UnknownClassProto.java 41 @Nonnull protected final ClassPath classPath;
43 public UnknownClassProto(@Nonnull ClassPath classPath) {
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)
    [all...]
ArrayProto.java 45 protected final ClassPath classPath;
49 public ArrayProto(@Nonnull ClassPath classPath, @Nonnull String type) {
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)
    [all...]
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 63 @Nonnull protected final ClassPath classPath;
69 public ClassProto(@Nonnull ClassPath classPath, @Nonnull String type) {
73 this.classPath = classPath;
78 @Nonnull @Override public ClassPath getClassPath() { return classPath; }
89 return classPath.getClassDef(type);
135 interfaceDef = classPath.getClassDef(interfaceType)
    [all...]
DumpFields.java 112 ClassPath classPath = ClassPath.fromClassPath(bootClassPathDirs, bootClassPaths, dexFile, apiLevel);
116 ClassProto classProto = (ClassProto) classPath.getClass(classDef);
DumpVtables.java 110 ClassPath classPath = ClassPath.fromClassPath(bootClassPathDirs, bootClassPaths, dexFile, apiLevel);
114 ClassProto classProto = (ClassProto) classPath.getClass(classDef);
MethodAnalyzer.java 68 * Before calling the analyze() method, you must have initialized the ClassPath by calling
69 * ClassPath.InitializeClassPath
77 @Nonnull private final ClassPath classPath;
95 public MethodAnalyzer(@Nonnull ClassPath classPath, @Nonnull Method method,
97 this.classPath = classPath;
158 classPath.getClass(method.getDefiningClass())));
162 classPath.getClass(method.getDefiningClass())))
    [all...]
  /cts/tools/vm-tests-tf/src/util/build/
JavacBuildStep.java 29 private final String classPath;
31 public JavacBuildStep(String destPath, String classPath) {
33 this.classPath = classPath;
58 commandLine[0] = "-classpath";
59 commandLine[1] = classPath;
81 && classPath.equals(other.classPath)
89 return destPath.hashCode() ^ classPath.hashCode() ^ sourceFiles.hashCode();
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java 71 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)
    [all...]
CommonSuperclassTest.java 53 private final ClassPath classPath;
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/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/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/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...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/util/
SuperclassChainTest.java 37 import org.jf.dexlib2.analysis.ClassPath;
59 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))
    [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);
  /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/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/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...]
  /cts/tools/cts-java-scanner/src/com/android/cts/javascanner/
DocletRunner.java 45 args.add("-classpath");
85 List<String> classPath = new ArrayList<String>();
86 classPath.add("./prebuilts/misc/common/tradefed/tradefed-prebuilt.jar");
87 classPath.add("./prebuilts/misc/common/ub-uiautomator/ub-uiautomator.jar");
88 return join(classPath, ":");
  /dalvik/hit/src/com/android/hit/
Queries.java 89 String classPath = theClass.toString();
92 if (classPath.startsWith(excludedPrefixes[i])) {
  /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/smali/baksmali/src/main/java/org/jf/baksmali/
baksmaliOptions.java 35 import org.jf.dexlib2.analysis.ClassPath;
76 public ClassPath classPath = null;
  /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...]

Completed in 415 milliseconds

1 2 3 4 5 6