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

1 2

  /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/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/proguard/src/proguard/wtk/
ProGuardObfuscator.java 40 * obfuscator.runner.classpath: /usr/local/java/proguard1.6/lib/proguard.jar
66 String classPath,
81 configuration.libraryJars = classPath(classPath);
84 configuration.programJars = new ClassPath();
110 * Converts the given class path String into a ClassPath object.
112 private ClassPath classPath(String classPathString)
114 ClassPath classPath = new ClassPath()
    [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 44 args.add("-classpath");
80 List<String> classPath = new ArrayList<String>();
81 classPath.add("./prebuilts/misc/common/tradefed/tradefed-prebuilt.jar");
82 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);
  /libcore/dalvik/src/main/java/dalvik/system/
VMRuntime.java 63 public native String classPath();
  /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...]
  /frameworks/base/test-runner/src/android/test/
ClassPathPackageInfoSource.java 55 private final String[] classPath;
63 classPath = getClassPath();
112 for (String entryName : classPath) {
115 // Forge may not have brought over every item in the classpath. Be
129 throw new AssertionError("Can't read classpath entry " +
304 String classPath = System.getProperty("java.class.path");
306 return classPath.split(Pattern.quote(separator));
  /libcore/luni/src/main/java/java/lang/
ClassLoader.java 69 * classes from the classpath. It is not equal to the bootstrap class loader -
100 String classPath = System.getProperty("java.class.path", ".");
102 // String[] paths = classPath.split(":");
116 return new PathClassLoader(classPath, BootClassLoader.getInstance());
  /libcore/luni/src/test/java/libcore/java/io/
OldFileTest.java 187 String classPath = url.toString();
188 int idx = classPath.indexOf("!");
190 classPath = classPath.substring(9, idx); // cutting off jar:file:
  /libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 95 String classPath = System.getProperty("java.class.path");
96 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest5.java 96 String classPath;
98 classPath = System.getProperty("org.apache.harmony.boot.class.path");
100 classPath = System.getProperty("sun.boot.class.path");
102 int nextInstance = classPath.indexOf(File.pathSeparatorChar,
106 elms.add(new File(classPath.substring(instanceOfSep + 1,
109 nextInstance = classPath.indexOf(File.pathSeparatorChar,
112 elms.add(new File(classPath.substring(instanceOfSep + 1)));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLClassLoaderTest.java 455 String classPath = System.getProperty("java.class.path");
456 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ResourceBundleTest.java 178 String classPath = System.getProperty("java.class.path");
179 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator);
226 String classPath = System.getProperty("java.class.path");
227 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator);
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 1051 const char* classPath;
1070 cri->classPath, cri->methods, cri->methodCount);
1072 ALOGE("Failed to register %s: %d", cri->classPath, result);
  /sdk/lint/cli/src/com/android/tools/lint/
Main.java 89 private static final String ARG_CLASSES = "--classpath"; //$NON-NLS-1$
    [all...]
  /cts/tools/vm-tests-tf/lib/
junit.jar 
  /external/dexmaker/lib/
jarjar.jar 
junit.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/
junit.jar 

Completed in 633 milliseconds

1 2