Searched refs:isSlash (Results 1 - 4 of 4) sorted by relevance

/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java105 if (isSlash(c0) && isSlash(c1)) {
124 if (len > 2 && isSlash(c2 = input.charAt(2))) {
142 if (len > 0 && isSlash(input.charAt(0))) {
170 if (isSlash(c)) {
199 private static final boolean isSlash(char c) { method in class:WindowsPathParser
204 while (off < end && isSlash(path.charAt(off))) { off++; }
210 while (off < end && !isSlash(c=path.charAt(off))) {
/openjdk10/jdk/src/java.instrument/windows/native/libinstrument/
H A DFileSystemSupport_md.c39 static int isSlash(char c) { function
97 while ((src < len) && isSlash(path[src])) src++;
111 && isSlash(path[0])
112 && isSlash(path[1])) {
154 if (isSlash(c)) {
155 while ((src < len) && isSlash(path[src])) src++;
168 if ((sbLen == 1) && (isSlash(sb[0]))) {
/openjdk10/jdk/src/java.base/windows/classes/java/io/
H A DWinNTFileSystem.java54 private boolean isSlash(char c) { method in class:WinNTFileSystem
124 if (isSlash(c)) {
125 while ((src < len) && isSlash(path.charAt(src))) src++;
139 if ((sn == 1) && (isSlash(sb.charAt(0)))) {
178 while ((src < len) && isSlash(path.charAt(src))) src++;
193 && isSlash(path.charAt(0))
194 && isSlash(path.charAt(1))) {
/openjdk10/jdk/test/java/io/pathNames/
H A DGeneral.java210 private static boolean isSlash(char x) { method in class:General
225 while ((n > 0) && isSlash(s.charAt(n))) {
237 if (isSlash(a.charAt(a.length() - 1))
238 || isSlash(b.charAt(0))

Completed in 159 milliseconds