Home | History | Annotate | Download | only in manual

Lines Matching refs:Path

15 import java.nio.file.Path;
43 Path workdir = CodeGenerationUtils.mavenModuleRoot(BulkParseTest.class).resolve(Paths.get(temporaryDirectory(), "javaparser_bulkparsetest"));
45 Path openJdkZipPath = workdir.resolve("langtools.zip");
57 Path path = Paths.get("/usr/lib/jvm/openjdk-9/src.zip");
58 bulkTest(new SourceZip(path), "openjdk_src_zip_test_results.txt", new ParserConfiguration().setLanguageLevel(JAVA_9));
71 TreeMap<Path, List<Problem>> results = new TreeMap<>(comparing(o -> o.toString().toLowerCase()));
85 TreeMap<Path, List<Problem>> results = new TreeMap<>(comparing(o -> o.toString().toLowerCase()));
86 sourceRoot.parse((path, result) -> {
87 if (!path.toString().contains("target")) {
89 results.put(path, result.getProblems());
96 private void writeResults(TreeMap<Path, List<Problem>> results, String testResultsFileName) throws IOException {
99 Path testResults = CodeGenerationUtils.mavenModuleRoot(BulkParseTest.class).resolve(Paths.get("..", "javaparser-testing", "src", "test", "resources", "com", "github", "javaparser", "bulk_test_results")).normalize();
105 for (Map.Entry<Path, List<Problem>> file : results.entrySet()) {