Searched refs:emptyPathDefault (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DBatchEnvironment.java122 path.emptyPathDefault(".");
238 private final String emptyPathDefault; field in class:BatchEnvironment.Path.PathIterator
240 public PathIterator(String path, String emptyPathDefault) { argument
242 this.emptyPathDefault = emptyPathDefault;
257 if (beg == end && emptyPathDefault != null)
258 return emptyPathDefault;
326 private String emptyPathDefault = null; field in class:BatchEnvironment.Path
328 public Path emptyPathDefault(String x) { method in class:BatchEnvironment.Path
329 emptyPathDefault
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DPaths.java204 * Split a path into its elements. If emptyPathDefault is not null, all
206 * the path, will be replaced with the value of emptyPathDefault.
208 * @param emptyPathDefault The value to substitute for empty path elements,
212 private static Iterable<File> getPathEntries(String path, File emptyPathDefault) { argument
221 else if (emptyPathDefault != null)
222 entries.add(emptyPathDefault);
240 private File emptyPathDefault = null; field in class:Paths.Path
242 public Path emptyPathDefault(File x) { method in class:Paths.Path
243 emptyPathDefault = x;
286 for (File file : getPathEntries(files, emptyPathDefault))
[all...]

Completed in 31 milliseconds