Home | History | Annotate | Download | only in util

Lines Matching refs:sep

121         char sep = File.separatorChar;
122 filename = filename.replace('/', sep).replace('\\', sep);
125 return (c == sep);
127 if (c == sep) {
129 if (!(ON_DOS && len > 4 && filename.charAt(1) == sep)) {
133 int nextsep = filename.indexOf(sep, 2);
138 && filename.length() > 2 && filename.charAt(2) == sep)
150 char sep = File.separatorChar;
151 path = path.replace('/', sep).replace('\\', sep);
164 root += sep;
166 next = (ca[next] == sep) ? next + 1 : next;
171 if (ca[i] != sep || ca[i - 1] != sep) {
176 } else if (path.length() > 1 && path.charAt(1) == sep) {
178 int nextsep = path.indexOf(sep, 2);
179 nextsep = path.indexOf(sep, nextsep + 1);