Home | History | Annotate | Download | only in i18n

Lines Matching defs:region

419     const UChar *region = TimeZone::getRegion(tzid);
420 if (region != NULL && u_strcmp(gWorld, region) != 0) {
421 country.setTo(region, -1);
442 singleZone = cached = gSingleZoneCountries->contains((void*)region);
444 cached = gMultiZonesCountries->contains((void*)region);
450 // We need to go through all zones associated with the region.
453 U_ASSERT(u_strlen(region) == 2);
455 u_UCharsToChars(region, regionBuf, 2);
460 // only the single zone is available for the region
470 if (!gSingleZoneCountries->contains((void*)region)) {
471 gSingleZoneCountries->addElement((void*)region, ec);
474 if (!gMultiZonesCountries->contains((void*)region)) {
475 gMultiZonesCountries->addElement((void*)region, ec);
491 u_UCharsToChars(region, regionBuf, 2);
709 ZoneMeta::getZoneIdByMetazone(const UnicodeString &mzid, const UnicodeString &region, UnicodeString &result) {
729 // check region mapping
730 if (region.length() == 2 || region.length() == 3) {
731 keyLen = region.extract(0, region.length(), keyBuf, ZID_KEY_MAX + 1, US_INV);