Lines Matching refs:bootclasspath
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 to
209 // ensure java does not fall back to the default bootclasspath.
210 bootClasspath = `--bootclasspath ""`
212 bootClasspath = strings.Join(flags.bootClasspath.FormTurbineClasspath("--bootclasspath "), " ")
223 "bootClasspath": bootClasspath,
248 var bootClasspath string
251 bootClasspath = flags.systemModules.FormJavaSystemModulesPath("--system=", ctx.Device())
253 deps = append(deps, flags.bootClasspath...)
254 if len(flags.bootClasspath) == 0 && ctx.Device() {
255 // explicitly specify -bootclasspath "" if the bootclasspath is empty to
256 // ensure java does not fall back to the default bootclasspath.
257 bootClasspath = `-bootclasspath ""`
259 bootClasspath = flags.bootClasspath.FormJavaClassPath("-bootclasspath")
288 "bootClasspath": bootClasspath,