Home
last modified time | relevance | path

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

/ohos5.0/base/global/i18n/frameworks/intl/src/
H A Di18n_timezone.cpp71 std::map<std::string, std::string> I18nTimeZone::city2TimeZoneID {};
614 if (city2TimeZoneID.size() == 0) { in I18nTimeZone()
617 if (city2TimeZoneID.find(id) == city2TimeZoneID.end()) { in I18nTimeZone()
620 std::string timezoneID = city2TimeZoneID.at(id); in I18nTimeZone()
797 city2TimeZoneID.insert( in SetCity2TimeZoneID()
1059 if (city2TimeZoneID.size() == 0) { in GetTimezoneIdByCityId()
1062 if (city2TimeZoneID.find(cityId) == city2TimeZoneID.end()) { in GetTimezoneIdByCityId()
1065 return city2TimeZoneID.at(cityId); in GetTimezoneIdByCityId()
/ohos5.0/base/global/i18n/frameworks/intl/include/
H A Di18n_timezone.h81 static std::map<std::string, std::string> city2TimeZoneID; variable