Home
last modified time | relevance | path

Searched refs:fileLocation (Results 1 – 5 of 5) sorted by relevance

/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/
DMigrationFactoryTest.java39 String fileLocation = "invalid-path-location"; in createFromFilePath_invalidPathLocation_expectException() local
41 MigrationFactory.createMigration(Paths.get(fileLocation), "44", false); in createFromFilePath_invalidPathLocation_expectException()
45 assertThat(e).hasMessageThat().contains(fileLocation); in createFromFilePath_invalidPathLocation_expectException()
51 Path fileLocation = Paths.get(TEST_DATA_PATH + "testNumbersFile.txt"); in createFromFilePath_validPathLocation_expectValidFields() local
53 …MigrationJob mj = MigrationFactory.createCustomRecipeMigration(fileLocation, countryCode, Migratio… in createFromFilePath_validPathLocation_expectValidFields()
58 .containsExactlyElementsIn(Files.readAllLines(fileLocation)); in createFromFilePath_validPathLocation_expectValidFields()
94 Path fileLocation = Paths.get("invalid-recipe-location"); in createWithCustomRecipes_invalidPathLocation_expectException() local
97 .importRecipes(Files.newInputStream(fileLocation))); in createWithCustomRecipes_invalidPathLocation_expectException()
101 assertThat(e).hasMessageThat().contains(fileLocation.toString()); in createWithCustomRecipes_invalidPathLocation_expectException()
DMetadataZipFileReaderTest.java41 String fileLocation = "invalid-zipfile-location"; in createInstance_invalidFileLocation_expectException() local
43 MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in createInstance_invalidFileLocation_expectException()
47 assertThat(e).hasMessageThat().contains(fileLocation); in createInstance_invalidFileLocation_expectException()
53 String fileLocation = TEST_DATA_PATH + "testMetadataZip.zip"; in importTable_countryCodeInZip_expectCsvTable() local
54 …taZipFileReader validZip = MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in importTable_countryCodeInZip_expectCsvTable()
61 String fileLocation = TEST_DATA_PATH + "testMetadataZip.zip/"; in importTable_countryCodeNotInZip_expectEmptyCsvTable() local
62 …taZipFileReader validZip = MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in importTable_countryCodeNotInZip_expectEmptyCsvTable()
/third_party/libphonenumber/migrator/src/main/java/com/google/phonenumbers/migrator/
DMetadataZipFileReader.java81 String fileLocation; in main() local
89 fileLocation = scanner.next(); in main()
94 fileLocation = args[0]; in main()
98 … MetadataZipFileReader m = MetadataZipFileReader.of(Files.newInputStream(Paths.get(fileLocation))); in main()
/third_party/typescript/src/testRunner/unittests/tsserver/
DprojectReferences.ts780 fileLocation: string; property
791 fileLocation,
803 onHostCreate: host => host.deleteFile(fileLocation)
817 fileContents = host.readFile(fileLocation);
818 host.deleteFile(fileLocation);
823 host.writeFile(fileLocation, fileContents!);
832 host.deleteFile(fileLocation);
917 fileLocation: dtsMapLocation,
928 fileLocation: dtsLocation,
/third_party/icu/tools/unicodetools/com/ibm/rbm/gui/
DRBManagerGUI.java312 String fileLocation = ((JMenuItem)ev.getSource()).getName(); in actionPerformed() local
313 fileLocation = fileLocation.substring(2,fileLocation.length()); in actionPerformed()
315 rbm = new RBManager(new File(fileLocation)); in actionPerformed()