Home
last modified time | relevance | path

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

123

/third_party/protobuf/csharp/src/Google.Protobuf.Test/
H A DFieldMaskTreeTest.cs47 RepeatedField<string> paths = tree.ToFieldMask().Paths; in AddFieldPath()
51 paths = tree.ToFieldMask().Paths; in AddFieldPath()
57 paths = tree.ToFieldMask().Paths; in AddFieldPath()
63 paths = tree.ToFieldMask().Paths; in AddFieldPath()
68 paths = tree.ToFieldMask().Paths; in AddFieldPath()
74 paths = tree.ToFieldMask().Paths; in AddFieldPath()
79 paths = tree.ToFieldMask().Paths; in AddFieldPath()
85 paths = tree.ToFieldMask().Paths; in AddFieldPath()
97 Paths = {"foo", "bar.baz", "bar.quz"} in MergeFromFieldMask()
99 RepeatedField<string> paths = tree.ToFieldMask().Paths; in MergeFromFieldMask()
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DTempFiles.cpp14 while (!Paths.IsEmpty()) in Clear()
16 NDir::DeleteFileAlways(Paths.Back()); in Clear()
17 Paths.DeleteBack(); in Clear()
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/
H A DMigrationFactoryTest.java24 import java.nio.file.Paths;
35 private static final Path RECIPES_PATH = Paths.get(TEST_DATA_PATH + "testRecipesFile.csv");
41 MigrationFactory.createMigration(Paths.get(fileLocation), "44", false); in createFromFilePath_invalidPathLocation_expectException()
51 Path fileLocation = Paths.get(TEST_DATA_PATH + "testNumbersFile.txt"); in createFromFilePath_validPathLocation_expectValidFields()
94 Path fileLocation = Paths.get("invalid-recipe-location"); in createWithCustomRecipes_invalidPathLocation_expectException()
H A DMetadataZipFileReaderTest.java27 import java.nio.file.Paths;
43 MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in createInstance_invalidFileLocation_expectException()
54 MetadataZipFileReader validZip = MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in importTable_countryCodeInZip_expectCsvTable()
62 MetadataZipFileReader validZip = MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in importTable_countryCodeNotInZip_expectEmptyCsvTable()
H A DMigrationJobTest.java34 import java.nio.file.Paths;
48 private static final Path RECIPES_PATH = Paths.get(TEST_DATA_PATH + "testRecipesFile.csv");
54 .createCustomRecipeMigration(Paths.get(numbersPath), COUNTRY_CODE, MigrationFactory in customRecipesMigration_expectMigrations()
66 .createCustomRecipeMigration(Paths.get(numbersPath), unsupportedCountry, MigrationFactory in customRecipesMigration_noRecipesFromCountry_expectNoMigrations()
77 .createCustomRecipeMigration(Paths.get(numbersPath), COUNTRY_CODE, MigrationFactory in customRecipes_singleMigration_unsupportedRecipeKey_expectException()
97 .createCustomRecipeMigration(Paths.get(numbersPath), COUNTRY_CODE, MigrationFactory in customRecipes_singleMigration_validKey_expectMigration()
224 Path createdFileLocation = Paths.get(report.exportToFile("strictTestFile")); in invalidMigration_strictExport_expectFileWithOriginalNumber()
242 Path createdFileLocation = Paths.get(report.exportToFile("lenientTestFile")); in invalidMigration_exportInvalidMigrations_expectFileWithMigratedNumber()
276 Path recipesPath = Paths.get(TEST_DATA_PATH + "testRecipesFile.csv"); in createMockJobFromTestRecipes()
H A DMigrationUtilsTest.java30 import java.nio.file.Paths;
44 private static final Path RECIPES_PATH = Paths.get(TEST_DATA_PATH + "testRecipesFile.csv");
64 .createCustomRecipeMigration(Paths.get(numbersPath), COUNTRY_CODE, MigrationFactory in getCountryMigratableNumbers_expectMatches()
/third_party/libphonenumber/migrator/src/main/java/com/google/phonenumbers/migrator/
H A DCommandLineMain.java25 import java.nio.file.Paths;
96 MigrationFactory.importRecipes(Files.newInputStream(Paths.get(clm.optionalParameter.customRecipe)))); in main()
103 .createCustomRecipeMigration(Paths.get(clm.numberInput.file), clm.countryCode, in main()
104 MigrationFactory.importRecipes(Files.newInputStream(Paths.get(clm.optionalParameter.customRecipe)))); in main()
107 .createMigration(Paths.get(clm.numberInput.file), clm.countryCode, in main()
116 printFileReport(mr, Paths.get(clm.numberInput.file)); in main()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DFieldMaskPartial.cs56 /// <param name="paths">Paths in the field mask</param>
103 return ToJson(Paths, true); in ToDiagnosticString()
144 mask.Paths.Add(path);
176 mask.Paths.Add(field.Name);
223 foreach (var path in fieldMask.Paths) in IsValid()
309 foreach (var path in additionalMask.Paths) in Intersection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DAutomaton.h82 SmallVector<NfaPath, 4> Paths; member in llvm::internal::NfaTranscriber
125 Paths.clear(); in reset()
142 Paths.clear(); in getPaths()
150 Paths.push_back(std::move(P)); in getPaths()
152 return Paths; in getPaths()
H A DSpecialCaseList.h72 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS,
81 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS);
107 bool createInternal(const std::vector<std::string> &Paths,
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ant/
H A DGenerateCodeTask.java13 import java.nio.file.Paths;
43 this.cldrPath = checkNotNull(Paths.get(path)); in setCldrDir()
49 this.cOutDir = Paths.get(path); in setCOutDir()
55 this.javaOutDir = Paths.get(path); in setJavaOutDir()
/third_party/node/deps/v8/third_party/zlib/google/
H A Dzip.h28 // Paths passed as span to avoid copying them.
29 using Paths = base::span<const base::FilePath>;
48 virtual bool Open(Paths paths, std::vector<base::File>* files) = 0;
118 Paths src_files;
169 Paths src_relative_paths,
H A Dzip_writer.h81 bool AddMixedEntries(Paths paths);
101 bool AddFileEntries(Paths paths);
110 bool AddDirectoryEntries(Paths paths);
H A Dzip_writer.cc181 bool ZipWriter::AddMixedEntries(Paths paths) { in AddMixedEntries()
196 const Paths relative_paths = paths.subspan(0, n); in AddMixedEntries()
229 bool ZipWriter::AddFileEntries(Paths paths) { in AddFileEntries()
236 const Paths relative_paths = paths.subspan(0, n); in AddFileEntries()
268 bool ZipWriter::AddDirectoryEntries(Paths paths) { in AddDirectoryEntries()
/third_party/node/deps/zlib/google/
H A Dzip.h28 // Paths passed as span to avoid copying them.
29 using Paths = base::span<const base::FilePath>;
48 virtual bool Open(Paths paths, std::vector<base::File>* files) = 0;
118 Paths src_files;
169 Paths src_relative_paths,
H A Dzip_writer.h81 bool AddMixedEntries(Paths paths);
101 bool AddFileEntries(Paths paths);
110 bool AddDirectoryEntries(Paths paths);
H A Dzip_writer.cc181 bool ZipWriter::AddMixedEntries(Paths paths) { in AddMixedEntries()
196 const Paths relative_paths = paths.subspan(0, n); in AddMixedEntries()
229 bool ZipWriter::AddFileEntries(Paths paths) { in AddFileEntries()
236 const Paths relative_paths = paths.subspan(0, n); in AddFileEntries()
268 bool ZipWriter::AddDirectoryEntries(Paths paths) { in AddDirectoryEntries()
/third_party/lzma/CPP/7zip/UI/Console/
H A DUpdateCallbackConsole.h14 FStringVector Paths; member
19 Paths.Add(path); in AddError()
24 Paths.Clear(); in Clear()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DSpecialCaseList.cpp74 SpecialCaseList::create(const std::vector<std::string> &Paths, in create() argument
77 if (SCL->createInternal(Paths, FS, Error)) in create()
91 SpecialCaseList::createOrDie(const std::vector<std::string> &Paths, in createOrDie() argument
94 if (auto SCL = create(Paths, FS, Error)) in createOrDie()
99 bool SpecialCaseList::createInternal(const std::vector<std::string> &Paths, in createInternal() argument
102 for (const auto &Path : Paths) { in createInternal()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/WellKnownTypes/
H A DFieldMaskTest.cs46 var mask = new FieldMask { Paths = { input } }; in ToString_Invalid()
56 var mask = new FieldMask { Paths = { "x", "foo__bar", @"x\y" } }; in ToString_Invalid_Precise()
/third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DFieldMaskTest.cs47 var mask = new FieldMask { Paths = { input } }; in ToString_Invalid()
57 var mask = new FieldMask { Paths = { "x", "foo__bar", @"x\y" } }; in ToString_Invalid_Precise()
101 mask.Paths.AddRange(input); in ToString()
113 Assert.AreEqual(expectedOutput.Length, mask.Paths.Count); in FromString()
116 Assert.AreEqual(expectedOutput[i], mask.Paths[i]); in FromString()
135 Assert.AreEqual(expectedOutput.Length, mask.Paths.Count); in FromFieldNumbers()
138 Assert.AreEqual(expectedOutput[i], mask.Paths[i]); in FromFieldNumbers()
160 mask.Paths.AddRange(input); in Normalize()
173 Assert.AreEqual(2, result.Paths.Count); in Union()
174 Assert.Contains("bar", result.Paths); in Union()
[all...]
/third_party/ninja/src/
H A Dstate.cc106 Paths::const_iterator i = paths_.find(path); in LookupNode()
118 for (Paths::iterator i = paths_.begin(); i != paths_.end(); ++i) { in SpellcheckNode()
187 for (Paths::iterator i = paths_.begin(); i != paths_.end(); ++i) in Reset()
197 for (Paths::iterator i = paths_.begin(); i != paths_.end(); ++i) { in Dump()
/third_party/lzma/CPP/7zip/UI/GUI/
H A DExtractDialog.cpp214 for (unsigned i = 0; i < _info.Paths.Size() && i < kHistorySize; i++) in OnInit()
215 _path.AddString(_info.Paths[i]); in OnInit()
219 if (_info.Paths.Size() > 0) in OnInit()
396 _info.Paths.Clear(); in OnOK()
398 AddUniqueString(_info.Paths, s); in OnOK()
406 AddUniqueString(_info.Paths, sTemp); in OnOK()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMemorySSA.cpp522 SmallVector<DefPath, 32> Paths; member in __anon23929::ClobberWalker
598 auto UpwardDefs = make_range(upward_defs_begin({Phi, Paths[PriorNode].Loc}), in addSearches()
601 PausedSearches.push_back(Paths.size()); in addSearches()
602 Paths.emplace_back(P.second, P.first, PriorNode); in addSearches()
616 /// PausedSearches is an array of indices into the Paths array. Its incoming
633 DefPath &Node = Paths[PathIndex]; in getBlockingAccess()
717 T &curNode() const { return W->Paths[*N]; } in curNode()
747 assert(!Paths.empty() && NP >= &Paths.front() && NP <= &Paths in defPathIndex()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DDebugWriter.java13 import java.nio.file.Paths;
72 Path outDir = Paths.get(args[0]); in writeMultipleForDebugging()
86 CldrDataSupplier src = CldrDataSupplier.forCldrFilesIn(Paths.get(cldrPath)); in writeMultipleForDebugging()

Completed in 19 milliseconds

123