HomeSort by relevance Sort by last modified time
    Searched full:classpath (Results 151 - 175 of 467) sorted by null

1 2 3 4 5 67 8 91011>>

  /docs/source.android.com/src/compatibility/
cts-development.md 30 `.classpath` file rather than copying the one from the development
34 ./cts/development/ide/eclipse/genclasspath.sh > .classpath
35 chmod u+w .classpath
37 This `.classpath` file will contain both the Android framework
  /external/apache-harmony/
run-harmony-tests 30 --classpath out/host/common/obj/JAVA_LIBRARIES/apache-harmony-tests-hostdex_intermediates/javalib.jar \
  /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/apache-harmony/support/src/test/resources/tests/resources/
hyts_flushed.jar 
  /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/
URLClassPath.java 24 * @see javassist.ClassPath
25 * @see ClassPool#insertClassPath(ClassPath)
26 * @see ClassPool#appendClassPath(ClassPath)
28 public class URLClassPath implements ClassPath {
  /external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
HelloWorld.java 32 // Load resources (e.g. templates) from classpath, along side this class.
  /external/junit/src/junit/runner/
TestCaseClassLoader.java 59 public TestCaseClassLoader(String classPath) {
60 scanPath(classPath);
64 private void scanPath(String classPath) {
67 StringTokenizer st= new StringTokenizer(classPath, separator);
  /external/proguard/examples/annotations/examples/
NativeCallBack.java 7 * javac -classpath ../lib/annotations.jar NativeCallBack.java
  /external/proguard/examples/ant/
midlets.xml 8 classpath="lib/proguard.jar" />
  /external/proguard/src/proguard/
DataEntryWriterFactory.java 39 * @param classPath the output class path.
44 public static DataEntryWriter createDataEntryWriter(ClassPath classPath,
53 ClassPathEntry entry = classPath.get(index);
  /external/proguard/src/proguard/ant/
ClassPathElement.java 56 * @param classPath the class path to be extended.
59 public void appendClassPathEntriesTo(ClassPath classPath, boolean output)
129 classPath.add(entry);
  /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);
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 50 public TestCaseClassLoader(String classPath) {
51 scanPath(classPath);
55 private void scanPath(String classPath) {
58 StringTokenizer st= new StringTokenizer(classPath, separator);
  /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)));
  /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/test/java/libcore/java/util/jar/
DalvikExecTest.java 37 String execDalvik1(String classpath, String mainClass, String arg1)
51 builder.command().add("-classpath");
52 builder.command().add(classpath);
68 String execDalvik (String classpath, String mainClass)
70 return execDalvik1(classpath, mainClass, null);
73 // Execute an existing JAR on dalvikvm using -classpath option.",
100 // Create a temp file, fill it with contents according to Dalvik JAR format, and execute it on dalvikvm using -classpath option.",
  /external/webkit/Source/JavaScriptCore/tests/mozilla/
README-jsDriver.html 29 [-hkt] [-b BUGURL] [-c CLASSPATH] [-f OUTFILE]
32 [--classpath=CLASSPATH] [--file=OUTFILE] [--javapath=JAVAPATH]
147 <a name="classpath"></a>
148 <dt><b>-c PATH, --classpath=PATH</b></dt>
150 Classpath to pass the the Java Virtual Machine. When running tests
152 to an argument named &quot;-classpath&quot;. If your particular JVM
155 documentation for more details about CLASSPATH.
271 <a href="#classpath">CLASSPATH</a>. For the
    [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/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 61 + ": this task requires 'classpath' attribute to be set", location).fillInStackTrace ();
72 // add emma libs to the parent task's classpath [to support non-extdir deployment]:
93 // full classpath scan flag:
182 // classpath:
215 // classpath:
355 // lib classpath attribute [to support non-extdir deployment]:
357 public final void setLibclasspath (final Path classpath)
360 m_libClasspath = classpath;
362 m_libClasspath.append (classpath);
  /development/pdk/docs/source/
using-eclipse.jd 22 <p>Eclipse needs a list of directories to search for Java files. This is called the "Java Build Path" and can be set with the .classpath file. We have a sample version to start you off.
24 <pre>cd /path/to/android/root <br>cp development/ide/eclipse/.classpath .<br>chmod u+w .classpath # Make the copy writable <br></pre>
25 <p>Now edit that copy of .classpath, if necessary.
68 <p>Every time you repo sync, or otherwise change files outside of Eclipse (especially the .classpath), you need to refresh Eclipse's view of things:
80 <p>The default .classpath includes the source to the core system and a sample set of apps, but might not include the particular app you may want to work on. To add an app, you must add the app's source directory. To do this inside Eclipse:
  /docs/source.android.com/src/source/
using-eclipse.md 35 Eclipse needs a list of directories to search for Java files. This is called the "Java Build Path" and can be set with the `.classpath` file. We have a sample version to start you off.
38 cp development/ide/eclipse/.classpath .
39 chmod u+w .classpath
41 Now edit that copy of `.classpath`, if necessary.
87 Every time you repo sync, or otherwise change files outside of Eclipse (especially the .classpath), you need to refresh Eclipse's view of things:
97 The default `.classpath` includes the source to the core system and a sample set of apps, but might not include the particular app you may want to work on. To add an app, you must add the app's source directory. To do this inside Eclipse:
  /libcore/luni/src/test/java/dalvik/system/
DexClassLoaderTest.java 46 /** just one classpath element, a raw dex file */
49 /** just one classpath element, a jar file */
52 /** two classpath elements, both raw dex files */
55 /** two classpath elements, both jar files */
102 * @param config how to configure the classpath
131 * @param config how to configure the classpath
  /dalvik/tools/
dex-preopt 43 # contain the boot classpath jar files. If not specified, then there
47 # product directory, of the directory where the boot classpath files
50 # of bootstrap classpath elements, colon-separated. Order is significant
167 # Sanity-check the specified boot classpath directory.
169 echo "must specify boot classpath directory" 1>&2
253 # Expand and verify the boot classpath directory. We add "/./" here to
289 # Split the boot classpath into separate elements and iterate over them,
307 # The input file is in the boot classpath directory, so it needs
  /external/android-mock/src/
build-framework-gen.xml 58 <classpath>
61 </classpath>

Completed in 6440 milliseconds

1 2 3 4 5 67 8 91011>>