Home | History | Annotate | Download | only in java

Lines Matching refs:bootclasspath

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"},
79 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
86 bootclasspath: []string{`""`},
87 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
95 bootclasspath: []string{"android_test_stubs_current", "core-lambda-stubs"},
96 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
103 bootclasspath: []string{"core.current.stubs", "core-lambda-stubs"},
104 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
111 bootclasspath: []string{`""`},
119 bootclasspath: []string{`""`},
128 bootclasspath: []string{"jdk8/jre/lib/jce.jar", "jdk8/jre/lib/rt.jar"},
144 bootclasspath: []string{"jdk8/jre/lib/jce.jar", "jdk8/jre/lib/rt.jar"},
157 bootclasspath: []string{`""`},
158 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
167 bootclasspath: []string{`""`},
168 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
176 bootclasspath: []string{`""`},
177 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
185 bootclasspath: []string{`""`},
186 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
194 bootclasspath: []string{`""`},
195 system: "bootclasspath", // special value to tell 1.9 test to expect bootclasspath
232 bootclasspath := convertModulesToPaths(testcase.bootclasspath)
235 bc := strings.Join(bootclasspath, ":")
237 bc = "-bootclasspath " + bc
254 got := javac.Args["bootClasspath"]
256 t.Errorf("bootclasspath expected %q != got %q", bc, got)
265 if len(bootclasspath) > 0 && bootclasspath[0] != `""` {
266 deps = append(deps, bootclasspath...)
315 got := javac.Args["bootClasspath"]
317 if testcase.system == "bootclasspath" {
321 t.Errorf("bootclasspath expected %q != got %q", expected, got)