HomeSort by relevance Sort by last modified time
    Searched full:bootclasspath (Results 1 - 25 of 144) sorted by null

1 2 3 4 5 6

  /libcore/ojluni/src/test/java/util/stream/bootlib/
TEST.properties 3 bootclasspath.dirs = .
  /system/core/rootdir/
init.environ.rc.in 10 export BOOTCLASSPATH %BOOTCLASSPATH%
  /art/test/118-noimage-dex2oat/
expected.txt 3 Has image is false, is image dex2oat enabled is false, is BOOTCLASSPATH on disk is false.
9 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true.
13 Has image is true, is image dex2oat enabled is true, is BOOTCLASSPATH on disk is true.
  /libcore/ojluni/src/test/java/util/stream/boottest/
TEST.properties 4 bootclasspath.dirs = .
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-master/4.5/
antlr4-master-4.5.pom 73 <bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
74 <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
75 <bootclasspath.compile>${bootclasspath.java6}</bootclasspath.compile>
76 <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
    [all...]
  /external/vogar/
.vogarconfig.example 9 # use "--verbose", "--suggest-classpaths" and "--mode jvm" + "use-bootclasspath"
14 --use-bootclasspath
  /prebuilts/tools/common/m2/repository/org/antlr/ST4/4.0.8/
ST4-4.0.8.pom 54 <bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
55 <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
56 <bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile>
57 <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
    [all...]
  /prebuilts/tools/common/offline-m2/org/antlr/ST4/4.0.8/
ST4-4.0.8.pom 54 <bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
55 <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
56 <bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile>
57 <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 14 REM default bootclasspath
15 set bootclasspath= variable
39 if x%1==x-bc set bootclasspath=-Dbootclasspath=%2 && shift && shift && goto processcmdlineargs variable
48 %vm% -cp ..\org.eclipse.releng.basebuilder\startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -f buildAll.xml %target% %bootclasspath% -DmapVersionTag=%mapVersionTag% -DbuildType=%buildType% %buildID% %ftpUser% %ftpPassword%
52 echo "usage: buildAll [-mapVersionTag HEAD|<branch name>] [-vm <url to java executable to run build>] [-bc <bootclasspath>] [-target <buildall target to execute>] [-buildID <buildID, e.g. 2.1.2>] [-ftp <userid> <password>] I|M"
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-master/3.5.2/
antlr-master-3.5.2.pom 57 <bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
58 <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
59 <bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile>
60 <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
    [all...]
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-master/3.5.2/
antlr-master-3.5.2.pom 57 <bootclasspath.java5>${java5.home}/lib/rt.jar</bootclasspath.java5>
58 <bootclasspath.java6>${java6.home}/lib/rt.jar</bootclasspath.java6>
59 <bootclasspath.compile>${bootclasspath.java5}</bootclasspath.compile>
60 <bootclasspath.testCompile>${bootclasspath.java6}</bootclasspath.testCompile>
    [all...]
  /libcore/ojluni/src/test/
artrun 20 ### Change the BOOTCLASSPATH to pick up bootlib classes.
93 # Dummy image location name. Art ignores the bootclasspath setting if a boot image
94 # already exists, so we force it to create a new boot image with our correct bootclasspath.
104 core-ojtests-hostdex.jar # This is the *one* addition that makes our OJ tests actually run. The rest of these are standard jars on the bootclasspath.
115 export BOOTCLASSPATH=$(join ":" "${BOOT_DEXJARS_ABS[@]}") # a,b,c
117 echo "BOOTCLASSPATH=$BOOTCLASSPATH"
125 echo "export BOOTCLASSPATH=$BOOTCLASSPATH"
  /external/vogar/src/vogar/commands/
VmCommandBuilder.java 41 private Classpath bootClasspath = new Classpath();
76 public VmCommandBuilder bootClasspath(Classpath bootClasspath) {
77 this.bootClasspath.addAll(bootClasspath);
166 if (!bootClasspath.isEmpty()) {
167 builder.tokens("-Xbootclasspath/a:" + bootClasspath);
Javac.java 38 public Javac bootClasspath(Classpath classpath) {
39 builder.args("-bootclasspath", classpath.toString());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/
build.properties 25 bootclasspath=${java.home}/lib/rt.jar
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 30 * included in the BOOTCLASSPATH. If it is, apps that include (via static
32 * BOOTCLASSPATH instead of the copy that is statically linked.
  /build/soong/java/
java.go 169 func (j *javaBase) BootClasspath(ctx android.BaseContext) string {
203 bootClasspath := j.BootClasspath(ctx)
204 if bootClasspath != "" {
205 deps = append(deps, bootClasspath)
238 bootClasspath android.OptionalPath, classJarSpecs, resourceJarSpecs []jarSpec, aidlPreprocess android.OptionalPath,
244 if otherName == j.BootClasspath(ctx) {
245 bootClasspath = android.OptionalPathForPath(javaDep.ClasspathFile())
277 return classpath, bootClasspath, classJarSpecs, resourceJarSpecs, aidlPreprocess,
289 classpath, bootClasspath, classJarSpecs, resourceJarSpecs, aidlPreprocess
    [all...]
builder.go 43 `$javacCmd -encoding UTF-8 $javacFlags $bootClasspath $classpath ` +
50 "javacCmd", "javacFlags", "bootClasspath", "classpath", "outDir")
101 bootClasspath string
131 "bootClasspath": flags.bootClasspath,
  /external/desugar/java/com/google/devtools/build/android/desugar/
Desugar.java 81 help = "Bootclasspath that was used to compile the --input Jar with, like javac's "
82 + "-bootclasspath flag (required)."
84 public List<Path> bootclasspath; field in class:Desugar.Options
176 checkState(!options.bootclasspath.isEmpty() || options.allowEmptyBootclasspath,
181 for (Path path : options.bootclasspath) {
182 checkState(!Files.isDirectory(path), "Bootclasspath entry must be a jar file: %s", path);
215 toInputFileProvider(closer, options.bootclasspath),
330 List<InputFileProvider> bootclasspath,
333 // Use a classloader that as much as possible uses the provided bootclasspath instead of
336 if (!bootclasspath.isEmpty())
    [all...]
  /external/jacoco/
README.android 6 when they are either in the bootclasspath (core, frameworks, ...) or system apps.
Android.mk 31 # coverage on classes in the bootclasspath (frameworks, services, ...) or system apps.
42 # bootclasspath (or we would create dependency cycle). Therefore we compile against
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 189 String bootClassPath = System.getProperty("org.apache.harmony.boot.class.path");
191 if (bootClassPath == null) {
192 bootClassPath = System.getProperty("sun.boot.class.path");
195 if (bootClassPath != null
196 && (bootClassPath.indexOf(File.pathSeparator + File.pathSeparator) >= 0)) {
197 fail("Boot class path contains extra path separator: " + bootClassPath);
  /external/jarjar/
build.xml 10 <property name="compile.bootclasspath" value=""/>
45 <echo>bootclasspath ${compile.bootclasspath}</echo>
63 <attribute name="bootclasspath" default=""/>
71 target="${compile.target}" bootclasspath="@{bootclasspath}" extdirs="${compile.extdirs}"
80 <compile module="main" refid="path.build" bootclasspath="${compile.bootclasspath}"/>
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
baksmaliOptions.java 91 public void setBootClassPath(String bootClassPath) {
92 bootClassPathEntries = Lists.newArrayList(bootClassPath.split(":"));
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-core/2.6.6/
jackson-core-2.6.6.pom 106 <bootclasspath>${sun.boot.class.path}</bootclasspath>

Completed in 1144 milliseconds

1 2 3 4 5 6