Home
last modified time | relevance | path

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

/system/timezone/tzlookup_generator/src/main/java/com/android/libcore/timezone/tzlookup/
DTzLookupGenerator.java124 List<String> countriesInIsos = CountryZonesFileSupport.extractIsoCodes(countriesIn); in execute() local
128 if (!Utils.allLowerCaseAscii(countriesInIsos)) { in execute()
129 logError("Non-lowercase country ISO codes found in: " + countriesInIsos); in execute()
133 if (!Utils.allUnique(countriesInIsos)) { in execute()
134 logError("Duplicate input country entries found: " + countriesInIsos); in execute()
140 List<String> upperCaseCountriesInIsos = Utils.toUpperCase(countriesInIsos); in execute()