Searched refs:Paths (Results 1 - 25 of 96) sorted by relevance

1234

/external/lzma/CPP/7zip/UI/Common/
H A DTempFiles.cpp14 while (!Paths.IsEmpty())
16 NDir::DeleteFileAlways(Paths.Back());
17 Paths.DeleteBack();
H A DTempFiles.h12 FStringVector Paths; member in class:CTempFiles
/external/jcommander/src/main/java/com/beust/jcommander/converters/
H A DPathConverter.java24 import java.nio.file.Paths;
34 return Paths.get(value);
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/
H A DCompilationUnitTest.java29 import java.nio.file.Paths;
48 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
49 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "Z.java"));
58 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
59 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "A.java"));
67 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources", "com", "github", "javaparser", "storage")).normalize();
68 Path testFile = sourceRoot.resolve(Paths.get("B.java"));
77 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths.get("src", "test", "resources")).normalize();
78 Path testFile = sourceRoot.resolve(Paths.get("com", "github", "javaparser", "storage", "PrimaryType.java"));
92 Path sourceRoot = mavenModuleRoot(CompilationUnitTest.class).resolve(Paths
[all...]
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DFieldMaskTest.cs46 var mask = new FieldMask { Paths = { input } };
56 var mask = new FieldMask { Paths = { "x", "foo__bar", @"x\y" } };
/external/testng/src/main/java/org/testng/internal/
H A DPathUtils.java20 import java.nio.file.Paths;
25 * Utility class for using Paths.
29 Path rootPath = Paths.get(suite.getFileName()).getParent();
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowIoUtils.java7 import java.nio.file.Paths;
17 return new String(Files.readAllBytes(Paths.get(absolutePath)), UTF_8);
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
H A DCodeGenerationUtils.java6 import java.nio.file.Paths;
66 return Paths.get(root, pkg, file).normalize();
79 return Paths.get(pkg, file).normalize();
97 return Paths.get(root, pkg).normalize();
109 return Paths.get(c.getProtectionDomain().getCodeSource().getLocation().toURI());
120 return classLoaderRoot(c).resolve(Paths.get("..", "..")).normalize();
H A DSourceZip.java31 import java.nio.file.Paths;
109 callback.process(Paths.get(entry.getName()), result);
/external/llvm/include/llvm/Support/
H A DSpecialCaseList.h65 create(const std::vector<std::string> &Paths, std::string &Error);
73 createOrDie(const std::vector<std::string> &Paths);
/external/clang/include/clang/Sema/
H A DLookup.h133 Paths(nullptr),
155 Paths(nullptr),
175 Paths(nullptr),
196 Paths(std::move(Other.Paths)),
206 Other.Paths = nullptr;
213 Paths = std::move(Other.Paths);
226 Other.Paths = nullptr;
233 if (Paths) deletePath
708 CXXBasePaths *Paths; member in class:clang::LookupResult
[all...]
/external/desugar/test/java/com/google/devtools/build/android/desugar/
H A DDesugarMainClassTest.java24 import java.nio.file.Paths;
47 Path path = Paths.get(".").toAbsolutePath();
77 Paths.get(System.getProperty(LAMBDA_METAFACTORY_DUMPER_PROPERTY))
H A DBytecodeTypeInferenceTest.java26 import java.nio.file.Paths;
36 private static final Path JAR_PATH = Paths.get(System.getProperty("jar_path"));
37 private static final Path GOLDEN_PATH = Paths.get(System.getProperty("golden_file"));
H A DBug62456849TestDataGenerator.java26 import java.nio.file.Paths;
49 Path inputJar = Paths.get(args[0]);
51 Path outputJar = Paths.get(args[1]);
/external/clang/include/clang/AST/
H A DCXXInheritance.h121 /// Paths - The actual set of paths that can be taken from the
123 std::list<CXXBasePath> Paths; member in class:clang::CXXBasePaths
181 paths_iterator begin() { return Paths.begin(); }
182 paths_iterator end() { return Paths.end(); }
183 const_paths_iterator begin() const { return Paths.begin(); }
184 const_paths_iterator end() const { return Paths.end(); }
186 CXXBasePath& front() { return Paths.front(); }
187 const CXXBasePath& front() const { return Paths.front(); }
/external/swiftshader/third_party/LLVM/tools/llvm-ar/
H A Dllvm-ar.cpp126 std::set<sys::Path> Paths; variable
273 // the Paths vector (built by buildPaths, below) and replaces any directories it
326 Paths.insert(dirpaths.begin(),dirpaths.end());
328 Paths.insert(aPath);
331 Paths.insert(aPath);
358 if (Paths.empty() ||
359 (std::find(Paths.begin(), Paths.end(), I->getPath()) != Paths.end())) {
409 if (Paths
[all...]
/external/lzma/CPP/7zip/UI/Console/
H A DUpdateCallbackConsole.h14 FStringVector Paths; member in struct:CErrorPathCodes
19 Paths.Add(path);
24 Paths.Clear();
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/utils/
H A DSymbolSolverQuickSetupTest.java13 import java.nio.file.Paths;
22 private Path root = Paths.get("src/test/resources/symbolsolver_quicksetup");
/external/clang/lib/AST/
H A DCXXInheritance.cpp58 Paths.clear();
68 Paths.swap(Other.Paths);
77 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
79 return isDerivedFrom(Base, Paths);
83 CXXBasePaths &Paths) const {
87 Paths.setOrigin(const_cast<CXXRecordDecl*>(this));
95 Paths);
102 CXXBasePaths Paths(/*FindAmbiguities=*/false, /*RecordPaths=*/false,
108 Paths
[all...]
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/
H A DCoreGenerator.java11 import java.nio.file.Paths;
30 final Path root = Paths.get(args[0], "..", "javaparser-core", "src", "main", "java");
35 final Path generatedJavaCcRoot = Paths.get(args[0], "..", "javaparser-core", "target", "generated-sources", "javacc");
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/manual/
H A DBulkParseTest.java16 import java.nio.file.Paths;
43 Path workdir = CodeGenerationUtils.mavenModuleRoot(BulkParseTest.class).resolve(Paths.get(temporaryDirectory(), "javaparser_bulkparsetest"));
57 Path path = Paths.get("/usr/lib/jvm/openjdk-9/src.zip");
99 Path testResults = CodeGenerationUtils.mavenModuleRoot(BulkParseTest.class).resolve(Paths.get("..", "javaparser-testing", "src", "test", "resources", "com", "github", "javaparser", "bulk_test_results")).normalize();
/external/turbine/javatests/com/google/turbine/binder/
H A DBinderErrorTest.java28 import java.nio.file.Paths;
40 ImmutableList.of(Paths.get(System.getProperty("java.home")).resolve("lib/rt.jar"));
/external/turbine/java/com/google/turbine/main/
H A DMain.java42 import java.nio.file.Paths;
87 new BufferedOutputStream(Files.newOutputStream(Paths.get(options.outputDeps().get())))) {
92 writeOutput(Paths.get(options.outputFile()), lowered.bytes(), transitive);
101 Path path = Paths.get(source);
108 for (Zip.Entry ze : new Zip.ZipIterable(Paths.get(sourceJar))) {
158 result.add(Paths.get(path));
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
H A DGradleManifestFactory.java7 import java.nio.file.Paths;
73 Path buildDir = Paths.get(config.buildDir(), "intermediates");
82 buildDir = Paths.get(moduleRoot.substring(0, idx), "intermediates");
/external/turbine/javatests/com/google/turbine/lower/
H A DLowerIntegrationTest.java30 import java.nio.file.Paths;
313 Files.write(Paths.get(shardFile), new byte[0]);
330 ImmutableList.of(Paths.get(System.getProperty("java.home")).resolve("lib/rt.jar"));

Completed in 543 milliseconds

1234