/cts/development/ide/eclipse/ |
genclasspath.sh | 3 # Outputs a classpath file containing classpaths from development/ide/eclipse 7 # ./cts/development/ide/eclipse/genclasspath.sh > .classpath 15 echo '<classpath>' 16 cat $ANDROID_BUILD_TOP/cts/development/ide/eclipse/.classpath | grep classpathentry 17 cat $ANDROID_BUILD_TOP/development/ide/eclipse/.classpath | grep classpathentry 18 echo '</classpath>'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
JUnitLaunchConfigDelegate.java | 41 * the classpath since it can find a correct reference to all the necessary 46 * necessary also puts back the junit.jar in the user classpath. 69 String[] classpath = super.getClasspath(configuration); local 70 return fixClasspath(classpath, getJavaProjectName(configuration)); 93 * Add the junit.jar to the user classpath; since Eclipse was relying on 97 * @param classpath Array containing classpath 100 * @return a new modified (if applicable) classpath 102 public static String[] fixClasspath(String[] classpath, String projectName) { 104 for (int i = 0; i < classpath.length; i++) [all...] |
/development/tools/idegen/src/ |
Eclipse.java | 33 * Generates an Eclipse .classpath file from the given configuration. 36 StringBuilder classpath = new StringBuilder(); local 38 classpath.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" 39 + "<classpath>\n"); 82 classpath.append(" <classpathentry kind=\"src\""); 85 classpath.append(" excluding=\"") 88 classpath.append(" path=\"") 96 classpath.append(" <classpathentry kind=\"lib\" path=\"") 104 classpath.append(" <classpathentry kind=\"output\" path=\"" 107 classpath.append("</classpath>\n") 118 StringBuilder classpath = new StringBuilder(); local [all...] |
/build/core/tasks/ |
ide.mk | 47 .classpath: PRIVATE_MODULES := $(eclipse_project_modules) 48 .classpath: PRIVATE_DIRS := $(source_paths) 51 $(eclipse_project_goals): .classpath 52 .classpath: FORCE 53 $(hide) echo Generating .classpath for eclipse 54 $(hide) echo '<classpath>' > $@ 60 $(hide) echo '</classpath>' >> $@
|
/dalvik/tests/etc/ |
reference-run-test-classes | 60 ${JAVA} ${DEBUG_OPTS} -ea ${VERIFY_ARG} -classpath classes Main "$@"
|
push-and-run-test-jar | 126 adb shell cd /data \; dvz -classpath test.jar Main "$@"
|
/cts/tools/vm-tests/etc/ |
starttests | 193 classpath=`classnameToJar ${mainclass}` 196 classpath=${classpath}:${depJar} 199 -classpath $dexcore:$classpath $mainclass >> $datadir/dalvikout 2>&1 206 classpath="/data/dexcore.jar" 214 classpath=${classpath}:${deviceFileName} 219 -classpath $classpath $mainclass >> $datadir/dalvikout 2>&1 && [all...] |
/cts/tools/dx-tests/etc/ |
compileall | 82 javac -d $javac_out -classpath ${dxjarpath} -sourcepath $project_src $jfiles 87 java -classpath $project_home/utilclasses:$project_lib/jasmin.jar util.CompileAllJasmin $tmpdir/alljasminfiles $javac_out &> /dev/null 93 java -classpath ${dxjarpath} dxconvext.ClassFileAssembler $acfhfile $javac_out &> /dev/null 103 javac -d $javac_out -classpath $project_lib/junit.jar:$javac_out -sourcepath $mainfilesdir \@$mainfileslist
|
/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...] |
/external/clearsilver/java-jni/ |
Makefile | 38 $(JAVAH) -classpath $(NEO_UTIL_JAVA_JAR) -jni org.clearsilver.HDF 41 $(JAVAH) -classpath $(NEO_UTIL_JAVA_JAR) -jni org.clearsilver.CS 44 $(JAVAC) -classpath $(NEO_UTIL_JAVA_JAR) CSTest.java 47 @/bin/sh -c "LD_LIBRARY_PATH=$(NEOTONIC_ROOT)/java-jni; export LD_LIBRARY_PATH; CLASSPATH=$(NEO_UTIL_JAVA_JAR):.; export CLASSPATH; $(JAVA_PATH)/bin/java CSTest" > javatest.gold 55 CLASSPATH=$(NEO_UTIL_JAVA_JAR):.; export CLASSPATH; \
|
Android.mk | 63 $(GEN): PRIVATE_CUSTOM_TOOL = javah -classpath $(PRIVATE_OUR_JAVA_LIB) -force -o $@ -jni org.clearsilver.HDF 71 $(GEN): PRIVATE_CUSTOM_TOOL = javah -classpath $(PRIVATE_OUR_JAVA_LIB) -force -o $@ -jni org.clearsilver.CS
|
/cts/tools/signature-tools/ |
sig | 47 exec java $javaOpts -classpath $libdir/signature-tools.jar:$libdir/dex-tools.jar:$libdir/stringtemplate.jar:$libdir/antlr-2.7.7.j (…)
|
sig-check | 39 classpath=$libdir/signature-tools.jar:$libdir/dex-tools.jar:\
|
sig-create | 39 classpath=$libdir/signature-tools.jar:$libdir/dex-tools.jar:\
|
/external/emma/core/java12/com/vladium/emma/rt/ |
InstrClassLoader.java | 46 public InstrClassLoader (final ClassLoader parent, final File [] classpath, 55 super (filesToURLs (classpath), null); 372 private static URL [] filesToURLs (final File [] classpath) 375 if ((classpath == null) || (classpath.length == 0)) 378 final URL [] result = new URL [classpath.length]; 382 result [f] = classpath [f].toURL (); // note: this does proper dir encoding
|
/cts/tools/dasm/etc/ |
dasm | 65 exec java $javaOpts -classpath "$libdir/dx.jar:$jarpath" dasm.Main "$@"
|
/sdk/apkbuilder/etc/ |
apkbuilder | 69 exec java -Xmx128M $java_debug -classpath "$jarpath" com.android.sdklib.build.ApkBuilderMain "$@"
|
apkbuilder.bat | 45 call %java_exe% -classpath %jarpath% com.android.sdklib.build.ApkBuilderMain %*
|
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/ |
DalvikExecTest.java | 37 String execDalvik1(String classpath, String mainClass, String arg1) 58 builder.command().add("-classpath"); 59 builder.command().add(classpath); 69 String execDalvik (String classpath, String mainClass) 71 return execDalvik1(classpath, mainClass, null); 74 // Execute an existing JAR on dalvikvm using -classpath option.", 101 // Create a temp file, fill it with contents according to Dalvik JAR format, and execute it on dalvikvm using -classpath option.",
|
/frameworks/base/core/java/com/android/internal/os/ |
ZygoteConnection.java | 269 * <li> --classpath=<i>colon-separated classpath</i> indicates 271 * be loaded from jar files in the specified classpath. Incompatible with 304 /** from --classpath */ 305 String classpath; field in class:ZygoteConnection.Arguments 416 } else if (arg.equals("-classpath")) { 417 if (classpath != null) { 422 classpath = args[++curArg]; 425 "-classpath requires argument"); 446 if (runtimeInit && classpath != null) [all...] |
/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);
|
/build/tools/droiddoc/test/stubs/ |
func.sh | 46 -classpath out/target/common/obj/JAVA_LIBRARIES/core_intermediates/classes.jar:out/target/common/obj/JAVA_LIBRARIES/ext_intermediates/classes.jar:out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar \
|
/external/proguard/build/ |
makefile | 14 CLASSPATH = $(ANT_JAR):$(WTK_JAR) 24 JAVAC_OPTIONS = -nowarn -Xlint:none -classpath $(CLASSPATH) -sourcepath $(SRC) -d $(CLASSES)
|
/build/core/ |
droiddoc.mk | 176 $(addprefix -classpath ,$(PRIVATE_CLASSPATH)) \ 209 $(addprefix -classpath ,$(PRIVATE_CLASSPATH)) \
|
/frameworks/base/opengl/tools/glgen/ |
gen | 47 java -classpath src GenerateGL -c specs/jsr239/glspec-1.0 specs/jsr239/glspec-1.0ext specs/jsr239/glspec-1.1 specs/jsr239/glspec-1.1ext specs/jsr239/glspec-1.1extpack specs/jsr239/glspec-checks 55 java -classpath src GenerateGLES
|