Lines Matching refs:tznames
1239 ZNames *tznames = NULL; in getTimeZoneDisplayName() local
1245 tznames = nonConstThis->loadTimeZoneNames(tzID, status); in getTimeZoneDisplayName()
1249 if (tznames != NULL) { in getTimeZoneDisplayName()
1250 const UChar *s = tznames->getName(type); in getTimeZoneDisplayName()
1262 ZNames *tznames = NULL; in getExemplarLocationName() local
1268 tznames = nonConstThis->loadTimeZoneNames(tzID, status); in getExemplarLocationName()
1272 if (tznames != NULL) { in getExemplarLocationName()
1273 locName = tznames->getName(UTZNM_EXEMPLAR_LOCATION); in getExemplarLocationName()
1340 void *tznames = uhash_get(fTZNamesMap, tzIDKey); in loadTimeZoneNames() local
1341 if (tznames == NULL) { in loadTimeZoneNames()
1344 tznames = ZNames::createTimeZoneAndPutInCache(fTZNamesMap, loader.getNames(), tzID, status); in loadTimeZoneNames()
1349 return (ZNames*)tznames; in loadTimeZoneNames()
1599 void* tznames = NULL; in getDisplayNames() local
1606 tznames = (void*) nonConstThis->loadTimeZoneNames(tzID, status); in getDisplayNames()
1609 U_ASSERT(tznames != NULL); in getDisplayNames()
1614 const UChar* name = ((ZNames*)tznames)->getName(type); in getDisplayNames()