Lines Matching defs:Path

93         pathsForLocation = new HashMap<Location,Path>(16);
107 private Map<Location, Path> pathsForLocation;
122 Path getPathForLocation(Location location) {
123 Path path = pathsForLocation.get(location);
132 Path p;
150 p = new Path();
184 Path p = getPathForLocation(SOURCE_PATH);
228 private class Path extends LinkedHashSet<File> {
234 public Path expandJarClassPaths(boolean x) {
242 public Path emptyPathDefault(File x) {
247 public Path() { super(); }
249 public Path addDirectories(String dirs, boolean warn) {
262 public Path addDirectories(String dirs) {
284 public Path addFiles(String files, boolean warn) {
292 public Path addFiles(String files) {
350 // Adds referenced classpath elements from a jar's Class-Path
365 private Path computeBootClassPath() {
367 Path path = new Path();
413 private Path computeUserClassPath() {
427 return new Path()
433 private Path computeSourcePath() {
438 return new Path().addFiles(sourcePathArg);
441 private Path computeAnnotationProcessorPath() {
446 return new Path().addFiles(processorPathArg);
450 private Path sourceSearchPath;
455 Path sourcePath = getPathForLocation(SOURCE_PATH);
456 Path userClassPath = getPathForLocation(CLASS_PATH);
463 private Path classSearchPath;
468 Path bootClassPath = getPathForLocation(PLATFORM_CLASS_PATH);
469 Path userClassPath = getPathForLocation(CLASS_PATH);
470 classSearchPath = new Path();
478 private Path otherSearchPath;
483 Path userClassPath = getPathForLocation(CLASS_PATH);
484 Path sourcePath = getPathForLocation(SOURCE_PATH);
488 otherSearchPath = new Path();