Home
last modified time | relevance | path

Searched refs:zoneTabFile (Results 1 – 3 of 3) sorted by relevance

/aosp12/system/timezone/input_tools/android/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
H A DTzLookupGeneratorTest.java70 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in invalidCountryZonesFile() local
90 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in invalidRulesVersion() local
113 String zoneTabFile = createZoneTabFile(createValidZoneTabEntriesGb()); in countryWithNoTimeZoneMappings() local
164 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in badDefaultId() local
188 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in explicitDefaultIdInvalid() local
249 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in countryZonesContainsNonLowercaseIsoCode() local
273 String zoneTabFile = createZoneTabFile(gbZoneTabEntries); in countryZonesContainsDuplicate() local
294 String zoneTabFile = in countryZonesAndZoneTabCountryMismatch() local
390 String zoneTabFile = createZoneTabFile(zoneTabEntriesWithBadId); in badTimeZoneMappingId() local
744 String zoneTabFile = createZoneTabFile(zoneTabEntries); in generateOutputData() local
[all …]
/aosp12/system/timezone/input_tools/android/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
H A DZoneTabFile.java40 static ZoneTabFile parse(String zoneTabFile) throws IOException, ParseException { in parse() argument
44 .readAllLines(Paths.get(zoneTabFile), StandardCharsets.US_ASCII); in parse()
H A DTzLookupGenerator.java181 private Map<String, List<String>> parseZoneTabFile(String zoneTabFile, Errors errors) in parseZoneTabFile() argument
183 errors.pushScope("Parsing " + zoneTabFile); in parseZoneTabFile()
186 zoneTabIn = ZoneTabFile.parse(zoneTabFile); in parseZoneTabFile()
189 throw errors.addFatalAndHalt("Unable to parse " + zoneTabFile, e); in parseZoneTabFile()