Home | History | Annotate | Download | only in src

Lines Matching full:path

42          * If the user has a file named "path-precedence" in their project's
49 File precedence = new File("path-precedence");
68 // Trim preceding "./" from path.
69 String path = sourceRoot.getPath().substring(2);
72 if (bucket.matches(path)) {
88 classpath.append(" path=\"")
96 classpath.append(" <classpathentry kind=\"lib\" path=\"")
104 classpath.append(" <classpathentry kind=\"output\" path=\""
119 String path = sourceRoot.getPath();
132 if (!nextPath.startsWith(path)) {
139 classpath.append(nextPath.substring(path.length() + 1))
149 if (!excludedPath.startsWith(path)) {
156 classpath.append(excludedPath.substring(path.length() + 1))
166 * Returns the trimmed path.
184 private boolean matches(String path) {
185 return pattern.matcher(path).find();