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

1 2 3 45 6 7 8 91011>>

  /sdk/traceview/
README 8 the .classpath file references a user library called ANDROID_SWT.
  /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/dom/src/test/resources/
build.xml 71 <classpath>
74 </classpath>
90 <classpath>
93 </classpath>
100 <classpath>
103 </classpath>
  /sdk/ddms/app/
README 30 the project directory, the .classpath file references a user library
60 Define a classpath variable in Eclipse:
61 - Open Preferences > Java > Build Path > Classpath Variables
62 - Create a new classpath variable named ANDROID_OUT_FRAMEWORK
64 - Create a new classpath variable named ANDROID_SRC
68 you add the new classpath variable, otherwise previous errors might not
  /external/emma/core/res/com/vladium/emma/
run_usage.res 2 'cp', 'classpath':
6 "load/coverage classpath";
15 "consider the entire classpath for coverage {including classes that are never loaded}";
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainer.java 24 * Classpath container for the Android projects.
25 * This supports both the System classpath and the library dependencies.
38 * @param path the path containing the classpath container id.
  /development/tools/glesv2debugger/META-INF/
MANIFEST.MF 12 Bundle-ClassPath: lib/host-libprotobuf-java-2.3.0-lite.jar,
  /external/javassist/src/main/javassist/
ByteArrayClassPath.java 43 * @see javassist.ClassPath
44 * @see ClassPool#insertClassPath(ClassPath)
45 * @see ClassPool#appendClassPath(ClassPath)
48 public class ByteArrayClassPath implements ClassPath {
ClassPoolTail.java 26 ClassPath path;
28 ClassPathList(ClassPath p, ClassPathList n) {
34 final class DirClassPath implements ClassPath {
75 final class JarDirClassPath implements ClassPath {
122 final class JarClassPath implements ClassPath {
201 public synchronized ClassPath insertClassPath(ClassPath cp) {
206 public synchronized ClassPath appendClassPath(ClassPath cp) {
221 public synchronized void removeClassPath(ClassPath cp)
    [all...]
ClassClassPath.java 40 * @see ClassPool#insertClassPath(ClassPath)
41 * @see ClassPool#appendClassPath(ClassPath)
44 public class ClassClassPath implements ClassPath {
LoaderClassPath.java 37 * @see ClassPool#insertClassPath(ClassPath)
38 * @see ClassPool#appendClassPath(ClassPath)
41 public class LoaderClassPath implements ClassPath {
  /external/proguard/examples/annotations/examples/
Applet.java 7 * javac -classpath ../lib/annotations.jar Applet.java
Application.java 7 * javac -classpath ../lib/annotations.jar Application.java
Bean.java 7 * javac -classpath ../lib/annotations.jar Bean.java
  /external/proguard/src/proguard/
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);
  /external/protobuf/examples/
Makefile 39 @echo 'java -classpath .:$$CLASSPATH AddPerson "$$@"' >> add_person_java
45 @echo 'java -classpath .:$$CLASSPATH ListPeople "$$@"' >> list_people_java
  /sdk/ddms/libs/ddmuilib/
README 8 the .classpath file references a user library called ANDROID_SWT.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/META-INF/
MANIFEST.MF 10 Bundle-ClassPath: kxml2-2.3.0.jar,
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 93 public static String execJava(String[] args, String[] classpath,
97 execJavaCommon(args, classpath, null, displayOutput, true);
105 public static String execJava(String[] args, String[] classpath,
109 execJavaCommon(args, classpath, envp, displayOutput, false);
150 public static Object[] execJava2(String[] args, String[] classpath,
153 return execJavaCommon(args, classpath, null, displayOutput, true);
156 private static Object[] execJavaCommon(String[] args, String[] classpath,
175 // add classpath string
176 if (classpath != null) {
177 for (String element : classpath) {
    [all...]
  /libcore/
run-libcore-tests 24 --classpath out/target/common/obj/JAVA_LIBRARIES/core-tests_intermediates/javalib.jar \
25 --classpath out/target/common/obj/JAVA_LIBRARIES/sqlite-jdbc_intermediates/classes.jar \
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
.classpath 2 <classpath>
19 </classpath>
  /sdk/sdkmanager/libs/sdklib/
.classpath 2 <classpath>
17 </classpath>
  /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...]
  /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/vm-tests/src/util/build/
DeviceUtil.java.template 73 + " in classpath");
112 public static void adbExec(IDevice device, String classpath, String mainclass) {
117 "-Djava.io.tmpdir=/data/local/tmp", "-classpath", classpath, mainclass, "&&",

Completed in 698 milliseconds

1 2 3 45 6 7 8 91011>>