Lines Matching refs:result

94         WindowsPathParser.Result result = WindowsPathParser.parse(path);
95 return new WindowsPath(fs, result.type(), result.root(), result.path());
106 WindowsPathParser.Result result =
110 result.type(),
111 result.root(),
112 result.path());
115 result.type(),
116 result.root(),
117 result.path(),
248 String result;
250 result = defaultDirectory + remaining;
252 result = defaultDirectory + "\\" + remaining;
254 return result;
267 String result = wd;
269 result += path.substring(root.length());
272 result += "\\" + path.substring(root.length());
274 return result;
407 StringBuilder result = new StringBuilder();
409 result.append("..\\");
414 result.append(other.getName(j).toString());
415 result.append("\\");
418 // drop trailing slash in result
419 result.setLength(result.length()-1);
420 return createFromNormalizedPath(getFileSystem(), result.toString());
508 StringBuilder result = new StringBuilder();
510 result.append(root);
513 result.append(getName(i));
514 result.append("\\");
518 // drop trailing slash in result
519 result.setLength(result.length()-1);
520 return createFromNormalizedPath(getFileSystem(), result.toString());
533 String result;
535 result = path + other.path;
537 result = path + "\\" + other.path;
539 return new WindowsPath(getFileSystem(), type, root, result);
543 String result;
545 result = root + other.path.substring(1);
547 result = root + other.path;
549 return createFromNormalizedPath(getFileSystem(), result);
561 String result;
563 result = path + remaining;
565 result = path + "\\" + remaining;
567 return createFromNormalizedPath(getFileSystem(), result);