HomeSort by relevance Sort by last modified time
    Searched refs:classPath (Results 1 - 25 of 49) 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/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);
TestCaseClassLoader.java 50 public TestCaseClassLoader(String classPath) {
51 scanPath(classPath);
55 private void scanPath(String classPath) {
58 StringTokenizer st= new StringTokenizer(classPath, separator);
  /external/proguard/src/proguard/
ClassPath.java 31 public class ClassPath
70 public boolean addAll(ClassPath classPath)
72 return classPathEntries.addAll(classPath.classPathEntries);
InputReader.java 142 private void checkInputOutput(ClassPath inputClassPath,
143 ClassPath outputClassPath)
175 ClassPath classPath,
179 classPath,
181 classPath.size(),
190 ClassPath classPath,
197 ClassPathEntry entry = classPath.get(index);
OutputWriter.java 56 ClassPath programJars = configuration.programJars;
138 ClassPath classPath,
149 DataEntryWriterFactory.createDataEntryWriter(classPath,
214 classPath,
224 throw new IOException("Can't write [" + classPath.get(fromOutputIndex).getName() + "] (" + ex.getMessage() + ")");
DataEntryWriterFactory.java 39 * @param classPath the output class path.
44 public static DataEntryWriter createDataEntryWriter(ClassPath classPath,
53 ClassPathEntry entry = classPath.get(index);
ConfigurationWriter.java 172 ClassPath classPath)
174 if (classPath != null)
176 for (int index = 0; index < classPath.size(); index++)
178 ClassPathEntry entry = classPath.get(index);
  /external/proguard/src/proguard/ant/
ConfigurationTask.java 321 private ClassPath extendClassPath(ClassPath classPath,
325 if (classPath == null)
327 classPath = new ClassPath();
330 classPathElement.appendClassPathEntriesTo(classPath,
333 return classPath;
337 private ClassPath extendClassPath(ClassPath classPath
    [all...]
ClassPathElement.java 56 * @param classPath the class path to be extended.
59 public void appendClassPathEntriesTo(ClassPath classPath, boolean output)
129 classPath.add(entry);
  /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/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/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...]
  /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, ":");
  /libcore/dalvik/src/main/java/dalvik/system/
VMRuntime.java 63 public native String classPath();
  /frameworks/base/core/java/com/android/internal/os/
WrapperInit.java 120 * @param classPath The class path.
124 public static void execStandalone(String invokeWith, String classPath, String className,
127 command.append(" /system/bin/dalvikvm -classpath '").append(classPath);
  /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/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...]
  /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/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...]
  /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:
  /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/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());

Completed in 439 milliseconds

1 2