Home
last modified time | relevance | path

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

/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DCountryCodeToRegionCodeMap.java39 ArrayList<String> listWithRegionCode; in getCountryCodeToRegionCodeMap() local
41 listWithRegionCode = new ArrayList<String>(25); in getCountryCodeToRegionCodeMap()
42 listWithRegionCode.add("US"); in getCountryCodeToRegionCodeMap()
43 listWithRegionCode.add("AG"); in getCountryCodeToRegionCodeMap()
44 listWithRegionCode.add("AI"); in getCountryCodeToRegionCodeMap()
45 listWithRegionCode.add("AS"); in getCountryCodeToRegionCodeMap()
46 listWithRegionCode.add("BB"); in getCountryCodeToRegionCodeMap()
47 listWithRegionCode.add("BM"); in getCountryCodeToRegionCodeMap()
48 listWithRegionCode.add("BS"); in getCountryCodeToRegionCodeMap()
49 listWithRegionCode.add("CA"); in getCountryCodeToRegionCodeMap()
[all …]
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
DCountryCodeToRegionCodeMapForTesting.java39 ArrayList<String> listWithRegionCode; in getCountryCodeToRegionCodeMap() local
41 listWithRegionCode = new ArrayList<String>(4); in getCountryCodeToRegionCodeMap()
42 listWithRegionCode.add("US"); in getCountryCodeToRegionCodeMap()
43 listWithRegionCode.add("BB"); in getCountryCodeToRegionCodeMap()
44 listWithRegionCode.add("BS"); in getCountryCodeToRegionCodeMap()
45 listWithRegionCode.add("CA"); in getCountryCodeToRegionCodeMap()
46 countryCodeToRegionCodeMap.put(1, listWithRegionCode); in getCountryCodeToRegionCodeMap()
48 listWithRegionCode = new ArrayList<String>(1); in getCountryCodeToRegionCodeMap()
49 listWithRegionCode.add("RU"); in getCountryCodeToRegionCodeMap()
50 countryCodeToRegionCodeMap.put(7, listWithRegionCode); in getCountryCodeToRegionCodeMap()
[all …]
/third_party/libphonenumber/tools/java/java-build/src/com/google/i18n/phonenumbers/
DBuildMetadataProtoFromXml.java224 for (List<String> listWithRegionCode : countryCodeToRegionCodeMap.values()) { in writeCountryCallingCodeMappingToJavaFile()
225 if (!listWithRegionCode.isEmpty()) { in writeCountryCallingCodeMappingToJavaFile()
/third_party/libphonenumber/tools/java/common/src/com/google/i18n/phonenumbers/
DBuildMetadataFromXml.java155 List<String> listWithRegionCode = new ArrayList<String>(1); in buildCountryCodeToRegionCodeMap() local
157 listWithRegionCode.add(regionCode); in buildCountryCodeToRegionCodeMap()
159 countryCodeToRegionCodeMap.put(countryCode, listWithRegionCode); in buildCountryCodeToRegionCodeMap()