Home
last modified time | relevance | path

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

/base/global/i18n/frameworks/intl/src/
Di18n_timezone.cpp69 std::map<std::string, std::string> I18nTimeZone::city2TimeZoneID {};
608 if (city2TimeZoneID.size() == 0) { in I18nTimeZone()
611 if (city2TimeZoneID.find(id) == city2TimeZoneID.end()) { in I18nTimeZone()
614 std::string timezoneID = city2TimeZoneID.at(id); in I18nTimeZone()
739 city2TimeZoneID.insert( in ReadTimeZoneData()
1025 if (city2TimeZoneID.size() == 0) { in GetTimezoneIdByCityId()
1028 if (city2TimeZoneID.find(cityId) == city2TimeZoneID.end()) { in GetTimezoneIdByCityId()
1031 return city2TimeZoneID.at(cityId); in GetTimezoneIdByCityId()
/base/global/i18n/frameworks/intl/include/
Di18n_timezone.h73 static std::map<std::string, std::string> city2TimeZoneID; variable