Home
last modified time | relevance | path

Searched refs:bootClassPath (Results 1 – 8 of 8) sorted by relevance

/external/turbine/java/com/google/turbine/options/
DTurbineOptions.java31 private final ImmutableSet<String> bootClassPath; field in TurbineOptions
51 ImmutableSet<String> bootClassPath, in TurbineOptions() argument
69 this.bootClassPath = checkNotNull(bootClassPath, "bootClassPath must not be null"); in TurbineOptions()
98 public ImmutableSet<String> bootClassPath() { in bootClassPath() method in TurbineOptions
99 return bootClassPath; in bootClassPath()
206 private final ImmutableSet.Builder<String> bootClassPath = ImmutableSet.builder(); field in TurbineOptions.Builder
223 bootClassPath.build(), in build()
251 public Builder addBootClassPathEntries(Iterable<String> bootClassPath) { in addBootClassPathEntries() argument
252 this.bootClassPath.addAll(bootClassPath); in addBootClassPathEntries()
/external/smali/baksmali/src/main/java/org/jf/baksmali/
DAnalysisArguments.java60 public List<String> bootClassPath = null; field in AnalysisArguments
126 if (bootClassPath == null) { in loadClassPathForDexFile()
130 } else if (bootClassPath.size() == 1 && bootClassPath.get(0).length() == 0) { in loadClassPathForDexFile()
135 … resolver = new ClassPathResolver(filteredClassPathDirectories, bootClassPath, classPath, dexFile); in loadClassPathForDexFile()
/external/turbine/java/com/google/turbine/deps/
DTransitive.java46 ClassPath bootClassPath, BindingResult bound) { in collectDeps() argument
54 if (bootClassPath.env().get(sym) != null) { in collectDeps()
/external/oj-libjdwp/src/share/classes/com/sun/jdi/
DPathSearchingVirtualMachine.java52 List<String> bootClassPath(); in bootClassPath() method
/external/turbine/javatests/com/google/turbine/options/
DTurbineOptionsTest.java92 assertThat(options.bootClassPath()).containsExactly("rt.jar", "zipfs.jar").inOrder(); in exhaustiveArgs()
/external/turbine/javatests/com/google/turbine/lower/
DIntegrationTestSupport.java436 ClassPath bootClassPath, in runTurbine() argument
446 Binder.bind(units, ClassPathBinder.bindClasspath(classpath), bootClassPath, moduleVersion); in runTurbine()
/external/turbine/java/com/google/turbine/main/
DMain.java168 return ClassPathBinder.bindClasspath(toPaths(options.bootClassPath())); in bootclasspath()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DVirtualMachineImpl.java1385 public List<String> bootClassPath() { in bootClassPath() method in VirtualMachineImpl