Searched refs:syntaxAndInput (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java285 public PathMatcher getPathMatcher(String syntaxAndInput) { argument
286 int pos = syntaxAndInput.indexOf(':');
287 if (pos <= 0 || pos == syntaxAndInput.length())
289 String syntax = syntaxAndInput.substring(0, pos);
290 String input = syntaxAndInput.substring(pos+1);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystem.java285 public PathMatcher getPathMatcher(String syntaxAndInput) { argument
286 int pos = syntaxAndInput.indexOf(':');
287 if (pos <= 0 || pos == syntaxAndInput.length())
289 String syntax = syntaxAndInput.substring(0, pos);
290 String input = syntaxAndInput.substring(pos+1);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java232 public PathMatcher getPathMatcher(String syntaxAndInput) { argument
233 int pos = syntaxAndInput.indexOf(':');
234 if (pos <= 0 || pos == syntaxAndInput.length()) {
237 String syntax = syntaxAndInput.substring(0, pos);
238 String input = syntaxAndInput.substring(pos + 1);

Completed in 38 milliseconds