Searched defs:sourcepath (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DSourceMapper.java48 SourceMapper(List<String> sourcepath) { argument
50 * sourcepath can arrive from the debugee as a List.
54 for (String element : sourcepath) {
65 SourceMapper(String sourcepath) { argument
67 * sourcepath can also arrive from the command line
68 * as a String. (via "-sourcepath")
74 StringTokenizer st = new StringTokenizer(sourcepath,
/openjdk7/langtools/make/tools/GenStubs/
H A DGenStubs.java70 * put on the langtools sourcepath with -implicit:none to compile the langtools
74 * genstubs -s <outdir> -sourcepath <path> <classnames>
76 * The specified class names are looked up on the sourcepath, and corresponding
115 String sourcepath = null;
121 else if (arg.equals("-sourcepath") && iter.hasNext())
122 sourcepath = iter.next();
132 return run(sourcepath, outdir, classes);
135 boolean run(String sourcepath, File outdir, List<String> classes) { argument
136 //System.err.println("run: sourcepath:" + sourcepath
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java183 public String sourcepath = ""; field in class:Configuration
321 option.equals("-sourcepath") ||
381 } else if (opt.equals("-sourcepath")) {
382 sourcepath = os[1];
384 sourcepath.length() == 0) {
385 sourcepath = os[1];
428 if (sourcepath.length() == 0) {
429 sourcepath = System.getProperty("env.class.path") == null ? "" :

Completed in 39 milliseconds