Home
last modified time | relevance | path

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

/third_party/libphonenumber/cpp/src/phonenumbers/ohos/
Dupdate_geocoding.cc38 std::map<int, CountryLanguages>* UpdateGeocoding::countryLanguagesMap = new std::map<int, CountryLa… member in i18n::phonenumbers::UpdateGeocoding
243 if (countryLanguagesMap->find(countryCode) != countryLanguagesMap->end()) { in UpdateCountryLanguages()
244 return &countryLanguagesMap->at(countryCode); in UpdateCountryLanguages()
248 if (countryLanguagesMap->find(countryCode) == countryLanguagesMap->end() && preIndex != -1) { in UpdateCountryLanguages()
249countryLanguagesMap->insert(std::make_pair(countryCode, *(countryLanguagesArray[preIndex]))); in UpdateCountryLanguages()
251 return &countryLanguagesMap->at(countryCode); in UpdateCountryLanguages()
335 countryLanguagesMap->insert(std::make_pair(countryCode, countryLanguages)); in AddCountryLanguages()
Dupdate_geocoding.h59 static std::map<int, CountryLanguages>* countryLanguagesMap; variable