Home | History | Annotate | Download | only in i18n

Lines Matching refs:tzID

835     UnicodeString tzID;
942 getTimeZoneID(specificMatches.getAlias(), matchIdx, tzID);
943 U_ASSERT(!tzID.isEmpty());
944 return TimeZone::createTimeZone(tzID);
975 len = gnames->findBestMatch(text, startIdx, genericNameTypes, tzID, tt, status);
987 U_ASSERT(!tzID.isEmpty());
988 return TimeZone::createTimeZone(tzID);
998 parseZoneID(text, tmpPos, tzID);
1001 return TimeZone::createTimeZone(tzID);
1010 parseShortZoneID(text, tmpPos, tzID);
1013 return TimeZone::createTimeZone(tzID);
1022 parseExemplarLocation(text, tmpPos, tzID);
1025 return TimeZone::createTimeZone(tzID);
1166 genMatchLen = gnames->findBestMatch(text, startIdx, ALL_GENERIC_NAME_TYPES, tzID, tt, status);
1175 parsedID.setTo(tzID);
1186 parseZoneID(text, tmpPos, tzID);
1189 parsedID.setTo(tzID);
1199 parseShortZoneID(text, tmpPos, tzID);
1202 parsedID.setTo(tzID);
2579 TimeZoneFormat::getTimeZoneID(const TimeZoneNames::MatchInfoCollection* matches, int32_t idx, UnicodeString& tzID) const {
2580 if (!matches->getTimeZoneIDAt(idx, tzID)) {
2583 fTimeZoneNames->getReferenceZoneID(mzID, fTargetRegion, tzID);
2586 return tzID;
2638 TimeZoneFormat::parseZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2672 tzID.setToBogus();
2679 tzID.setTo(handler->getID(), -1);
2689 return tzID;
2693 TimeZoneFormat::parseShortZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2730 tzID.setToBogus();
2737 tzID.setTo(handler->getID(), -1);
2747 return tzID;
2752 TimeZoneFormat::parseExemplarLocation(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2755 tzID.setToBogus();
2761 return tzID;
2773 getTimeZoneID(exemplarMatches.getAlias(), matchIdx, tzID);
2777 if (tzID.length() == 0) {
2781 return tzID;