Lines Matching defs:ask
269 * String ask Input pathname to be passed to the check method
275 String ans, String ask, String slash)
278 check(ans, ask + slash);
281 ask + slash);
285 /** Check slash cases for the given ask string */
287 String ans, String ask)
290 check(ans, ask);
293 checkSlash(depth, create, ans, ask, "/");
294 checkSlash(depth, create, ans, ask, "//");
295 checkSlash(depth, create, ans, ask, "///");
297 checkSlash(depth, create, ans, ask, "\\");
298 checkSlash(depth, create, ans, ask, "\\\\");
299 checkSlash(depth, create, ans, ask, "\\/");
300 checkSlash(depth, create, ans, ask, "/\\");
301 checkSlash(depth, create, ans, ask, "\\\\\\");
306 /** Check name cases for the given ask string */
308 String ans, String ask)
319 checkSlashes(d, create, ans + n, ask + n);
321 checkSlashes(d, create, ans + n, ask + n);
324 checkSlashes(d, create, ans + n, ask + n);
327 checkSlashes(d, create, ans + n, ask + n);
331 checkSlashes(d, create, trimTrailingSlashes(ans), ask + ".");
340 checkSlashes(d, create, ans, ask + "..");
342 checkSlashes(d, create, n, ask + "..");
347 checkSlashes(d, create, ans, ask + "..");
351 File thisPath = new File(ask);
352 File nextPath = new File(ask + "..");
354 checkSlashes(d, create, ans + "..", ask + "..");