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

1 2

  /build/soong/java/
sdk_test.go 37 bootclasspath []string
44 bootclasspath: config.DefaultBootclasspathLibraries,
52 bootclasspath: config.DefaultBootclasspathLibraries,
61 bootclasspath: []string{`""`},
62 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
70 bootclasspath: []string{"android_stubs_current", "core-lambda-stubs"},
71 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
78 bootclasspath: []string{"android_system_stubs_current", "core-lambda-stubs"}
    [all...]
dexpreopt_config.go 101 // The path to bootclasspath dex files needs to be known at module GenerateAndroidBuildAction time, before
102 // the bootclasspath modules have been compiled. Set up known paths for them, the singleton rules will copy
155 // The path to bootclasspath dex files needs to be known at module GenerateAndroidBuildAction time, before
156 // the bootclasspath modules have been compiled. Set up known paths for them, the singleton rules will copy
192 bootclasspath := append(copyOf(image.dexLocations), global.ProductUpdatableBootLocations...)
193 return bootclasspath
builder.go 47 `$processorpath $processor $javacFlags $bootClasspath $classpath ` +
61 "javacFlags", "bootClasspath", "classpath", "processorpath", "processor", "srcJars", "srcJarDir",
70 `$javacFlags -source $javaVersion -target $javaVersion -- $bootClasspath $classpath && ` +
82 "javacFlags", "bootClasspath", "classpath", "srcJars", "outDir", "javaVersion")
151 bootClasspath classpath
203 deps = append(deps, flags.bootClasspath...)
206 var bootClasspath string
207 if len(flags.bootClasspath) == 0 && ctx.Device() {
208 // explicitly specify -bootclasspath "" if the bootclasspath is empty t
    [all...]
system_modules.go 26 // OpenJDK 9 introduces the concept of "system modules", which replace the bootclasspath. This
27 // file will produce the rules necessary to convert each unique set of bootclasspath jars into
java.go 85 // don't build against the default libraries (bootclasspath, ext, and framework for device
130 // Add host jdk tools.jar to bootclasspath
283 // inserting into the bootclasspath/classpath of another compile
406 bootClasspathTag = dependencyTag{name: "bootclasspath"}
594 bootClasspath classpath
745 deps.bootClasspath = append(deps.bootClasspath, dep.HeaderJars()...)
896 flags.bootClasspath = append(flags.bootClasspath, deps.bootClasspath...
    [all...]
dexpreopt_bootjars.go 177 // The path to bootclasspath dex files needs to be known at module GenerateAndroidBuildAction time, before
178 // the bootclasspath modules have been compiled. Copy the dex jars there so the module rules that have
293 // dex preopt on the bootclasspath produces multiple files. The first dex file
droiddoc.go 174 // don't build against the default libraries (bootclasspath, ext, and framework for device
636 deps.bootClasspath = append(deps.bootClasspath, sdkDep.jars...)
646 deps.bootClasspath = append(deps.bootClasspath, dep.ImplementationJars()...)
762 implicits = append(implicits, deps.bootClasspath...)
768 if len(deps.bootClasspath) > 0 {
872 *implicits = append(*implicits, deps.bootClasspath...)
875 if len(deps.bootClasspath.Strings()) > 0 {
876 // For OpenJDK 8 we can use -bootclasspath to define the core libraries code
    [all...]
aar.go 423 // compiled against the device bootclasspath, along with a `package-res.apk` file containing Android resources compiled
  /external/vogar/
.vogarconfig.example 9 # use "--verbose", "--suggest-classpaths" and "--mode jvm" + "use-bootclasspath"
14 --use-bootclasspath
  /external/turbine/java/com/google/turbine/main/
Main.java 99 ClassPath bootclasspath = bootclasspath(options); local
107 Binder.bind(units, classpath, bootclasspath, /* moduleVersion=*/ Optional.empty());
112 Map<String, byte[]> transitive = Transitive.collectDeps(bootclasspath, bound);
116 Dependencies.collectDeps(options.targetLabel(), bootclasspath, bound, lowered);
142 private static ClassPath bootclasspath(TurbineOptions options) throws IOException { method in class:Main
143 // if both --release and --bootclasspath are specified, --release wins
155 ClassPath bootclasspath = CtSymClassBinder.bind(release); local
156 if (bootclasspath == null) {
159 return bootclasspath;
    [all...]
  /art/tools/
javac-helper.sh 18 # Calls javac with the -bootclasspath values passed in automatically.
25 # Select between host,target,jvm bootclasspath (default target).
26 # --core-only: Use only "core" bootclasspath (e.g. do not include framework).
80 # Do not prepend a -bootclasspath, which will use the default bootclasspath instead.
83 # For --mode=host or --mode=target, look up the correct -bootclasspath for libcore.
98 javac_args=(-bootclasspath "$bcp_arg")
  /external/turbine/javatests/com/google/turbine/bytecode/sig/
SigIntegrationTest.java 49 * Reads all field, class, and method signatures in the bootclasspath, and round-trips them through
59 ImmutableList<Path> bootclasspath = local
66 if (!bootclasspath.isEmpty()) {
67 for (Path path : bootclasspath) {
143 // sanity-check that the bootclasspath contains a plausible number of signatures; 8u60 has >18k
  /external/desugar/java/com/google/devtools/build/android/desugar/
DefaultMethodClassFixer.java 48 private final ClassReaderFactory bootclasspath; field in class:DefaultMethodClassFixer
66 ClassReaderFactory bootclasspath,
71 this.bootclasspath = bootclasspath;
247 if (bootclasspath.isKnown(implemented)) {
251 bytecode = checkNotNull(bootclasspath.readIfKnown(implemented), implemented);
254 // Default methods from interfaces on the bootclasspath that we're not renaming or emulating
294 ClassReader bytecode = bootclasspath.readIfKnown(internalName);
341 if (bytecode == null || bootclasspath.isKnown(anInterface)) {
369 if (bootclasspath.isKnown(implemented))
    [all...]
InterfaceDesugaring.java 53 private final ClassReaderFactory bootclasspath; field in class:InterfaceDesugaring
70 ClassReaderFactory bootclasspath,
78 this.bootclasspath = bootclasspath;
252 bootclasspath,
360 * they're part of the bootclasspath, as well as all lambda body methods. Keeps calls to interface
361 * methods declared in the bootclasspath as-is (but note that these would presumably fail on
374 private final ClassReaderFactory bootclasspath; field in class:InterfaceDesugaring.InterfaceInvocationRewriter
383 ClassReaderFactory bootclasspath,
389 this.bootclasspath = bootclasspath
    [all...]
Desugar.java 112 "Bootclasspath that was used to compile the --input Jar with, like javac's "
113 + "-bootclasspath flag (required)."
115 public List<Path> bootclasspath; field in class:Desugar.DesugarOptions
361 new IndexedInputs(toRegisteredInputFileProvider(closer, options.bootclasspath));
362 // Use a classloader that as much as possible uses the provided bootclasspath instead of
365 options.bootclasspath.isEmpty()
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/scan/
KeepScanner.java 90 "Bootclasspath that was used to compile the --input Jar with, like javac's "
91 + "-bootclasspath flag (required)."
93 public List<Path> bootclasspath; field in class:KeepScanner.KeepScannerOptions
127 IndexedInputs bootclasspath = local
128 new IndexedInputs(toRegisteredInputFileProvider(closer, options.bootclasspath));
135 new HeaderClassLoader(bootclasspath, noopRewriter,
  /external/turbine/java/com/google/turbine/deps/
Dependencies.java 49 Optional<String> targetLabel, ClassPath bootclasspath, BindingResult bound, Lowered lowered) {
61 if (bootclasspath.env().get(sym) != null) {
62 // bootclasspath deps are not tracked
  /external/turbine/java/com/google/turbine/binder/
Binder.java 73 ClassPath bootclasspath,
85 bootclasspath.index(),
89 CompoundEnv.of(classpath.env()).append(bootclasspath.env());
92 CompoundEnv.of(classpath.moduleEnv()).append(bootclasspath.moduleEnv());
179 throw new IllegalArgumentException("Could not find java.lang on bootclasspath");
  /build/make/core/
android_manifest.mk 97 # devices, but classes in them were in bootclasspath jars, etc. So making them
java_common.mk 267 # No bootclasspath. But we still need "" to prevent javac from using default host bootclasspath.
325 # bootclasspath.
374 # putting them on the bootclasspath means that:
envsetup.mk 249 # Set up minimal BOOTCLASSPATH list of jars to build/execute
259 # bootclasspath.
    [all...]
definitions.mk     [all...]
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 1955 milliseconds

1 2