Searched defs:dots (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/solaris/native/java/io/
H A Dcanonicalize_md.c52 int dots = 0, n = 0; local
59 dots = 1;
70 return (dots ? n : 0);
142 int dots = 0; local
149 dots = 1;
153 dots = 2;
163 if (dots == 1) {
/openjdk7/jdk/src/windows/native/java/io/
H A Dcanonicalize_md.c154 /* Tell whether the given string contains prohibited combinations of dots.
155 In the canonicalized form no path element may have dots at its end.
160 dots(char *start) function
165 return 0; // no more dots
167 while ((*p) == '.') // go to the end of dots
174 return 0; // no prohibited combinations of dots found
177 /* Wide character version of dots */
184 return 0; // no more dots
186 while ((*p) == L'.') // go to the end of dots
193 return 0; // no prohibited combinations of dots foun
[all...]

Completed in 47 milliseconds