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

  /cts/tools/vm-tests/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();
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 22 String classPath= System.getProperty("java.class.path");
23 Hashtable result = collectFilesInPath(classPath);
27 public Hashtable collectFilesInPath(String classPath) {
28 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
56 Vector splitClassPath(String classPath) {
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /external/junit/src/junit/runner/
ClassPathTestCollector.java 25 String classPath= System.getProperty("java.class.path");
26 Hashtable result = collectFilesInPath(classPath);
30 public Hashtable collectFilesInPath(String classPath) {
31 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
59 Vector splitClassPath(String classPath) {
62 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /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/junit/src/test/java/junit/runner/
ClassPathTestCollector.java 22 String classPath= System.getProperty("java.class.path");
23 Hashtable result = collectFilesInPath(classPath);
27 public Hashtable collectFilesInPath(String classPath) {
28 Hashtable result= collectFilesInRoots(splitClassPath(classPath));
56 Vector splitClassPath(String classPath) {
59 StringTokenizer tokenizer= new StringTokenizer(classPath, separator);
  /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...]
  /dalvik/hit/src/com/android/hit/
Queries.java 89 String classPath = theClass.toString();
92 if (classPath.startsWith(excludedPrefixes[i])) {
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_ClassLoader.java 51 String classPath = System.getProperty("java.class.path");
52 // System.out.println("Test class loader - classpath = " + classPath );
55 String[] theClassPaths = classPath.split(theSeparator);
  /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 56 private final String[] classPath;
64 classPath = getClassPath();
113 for (String entryName : classPath) {
116 // Forge may not have brought over every item in the classpath. Be
136 throw new AssertionError("Don't understand classpath entry " +
140 throw new AssertionError("Can't read classpath entry " +
315 String classPath = System.getProperty("java.class.path");
317 return classPath.split(Pattern.quote(separator));
  /libcore/luni/src/test/java/tests/api/java/util/
ResourceBundleTest.java 123 String classPath = System.getProperty("java.class.path");
124 StringTokenizer tok = new StringTokenizer(classPath, File.pathSeparator);
  /libcore/luni/src/main/java/java/lang/
ClassLoader.java 77 * classes from the classpath. It is not equal to the bootstrap class loader -
102 String classPath = System.getProperty("java.class.path", ".");
104 // String[] paths = classPath.split(":");
118 return new PathClassLoader(classPath, BootClassLoader.getInstance());
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ClassLoaderReflectionTest.java 158 * same classpath as the application class loader.
176 * uses the same classpath as the application class loader. It loads
194 String classPath = System.getProperty("java.class.path");
197 .newInstance(classPath, bridge);
202 List<URL> classpath = new ArrayList<URL>(); local
203 classpath.addAll(classpathToUrls("java.class.path"));
204 classpath.addAll(classpathToUrls("sun.boot.class.path"));
205 return new URLClassLoader(classpath.toArray(new URL[classpath.size()]), bridge);
209 String classpath = System.getProperty(propertyName) local
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 1053 const char* classPath;
1073 cri->classPath, cri->methods, cri->methodCount);
1075 LOGE("Failed to register %s: %d", cri->classPath, result);
  /libcore/luni/src/test/java/tests/api/java/io/
FileTest.java     [all...]
  /cts/tools/dx-tests/lib/
junit.jar 
  /cts/tools/utils/lib/
junit.jar 
  /cts/tools/vm-tests/lib/
junit.jar 
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilt/sdk/tools/lib/
dx.jar 
  /external/proguard/lib/
proguard.jar 

Completed in 1593 milliseconds