/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/ |
runant.py | 70 # Build up standard classpath (LOCALCLASSPATH) 87 CLASSPATH = "" 88 if os.environ.has_key('CLASSPATH'): 89 CLASSPATH = os.environ['CLASSPATH'] 92 cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \ 95 CLASSPATH, string.join(sys.argv[1:], ' '))
|
/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}";
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
DeodexUtil.java | 62 public FieldIdItem lookupField(ClassPath.ClassDef classDef, int fieldOffset) { 63 ClassPath.FieldDef field = classDef.getInstanceField(fieldOffset); 73 public MethodIdItem lookupVirtualMethod(ClassPath.ClassDef classDef, int methodIndex) { 97 private MethodIdItem parseAndResolveMethod(ClassPath.ClassDef classDef, String methodName, String methodParams, 191 ClassPath.ClassDef methodClassDef = classDef; 208 private FieldIdItem parseAndResolveField(ClassPath.ClassDef classDef, ClassPath.FieldDef field) { 223 ClassPath.ClassDef fieldClass = classDef; 225 ArrayList<ClassPath.ClassDef> parents = new ArrayList<ClassPath.ClassDef>() [all...] |
/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/samples/training/basic/ActivityLifecycle/ |
local.properties | 11 extensible.classpath=./libs/android-support-v13.jar
|
/external/antlr/antlr-3.4/runtime/Perl5/tools/ |
antlr.bat | 9 -classpath "%ANTLR_HOME%\tool\target\classes;%ANTLR_HOME%\runtime\Java\target\classes;%ANTLR_HOME%\lib\antlr-3.0.jar;%ANTLR_HOME%\lib\antlr-2.7.7.jar;%ANTLR_HOME%\lib\stringtemplate-3.0.jar" ^
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/ |
buildBugToolsZip.xml | 11 includes=".classpath, .project,
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/ |
buildFeedToolsZip.xml | 11 includes=".classpath, .project,
|
buildFeedValidatorJar.xml | 16 <classpath> 24 </classpath>
|
feedValidate.xml | 10 <classpath> 18 </classpath>
|
/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...] |
/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
|
/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
|
/prebuilts/tools/common/proguard/proguard4.7/examples/annotations/examples/ |
Applet.java | 7 * javac -classpath ../lib/annotations.jar Applet.java
|
Application.java | 7 * javac -classpath ../lib/annotations.jar Application.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,
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/ |
ViewConstructorDetectorTest.java | 39 "bytecode/.classpath=>.classpath", 57 "bytecode/.classpath=>.classpath",
|
/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...] |