Home | History | Annotate | Download | only in i18n

Lines Matching defs:tzID

847     UnicodeString tzID;
954 getTimeZoneID(specificMatches.getAlias(), matchIdx, tzID);
955 U_ASSERT(!tzID.isEmpty());
956 return TimeZone::createTimeZone(tzID);
987 len = gnames->findBestMatch(text, startIdx, genericNameTypes, tzID, tt, status);
999 U_ASSERT(!tzID.isEmpty());
1000 return TimeZone::createTimeZone(tzID);
1010 parseZoneID(text, tmpPos, tzID);
1013 return TimeZone::createTimeZone(tzID);
1022 parseShortZoneID(text, tmpPos, tzID);
1025 return TimeZone::createTimeZone(tzID);
1034 parseExemplarLocation(text, tmpPos, tzID);
1037 return TimeZone::createTimeZone(tzID);
1178 genMatchLen = gnames->findBestMatch(text, startIdx, ALL_GENERIC_NAME_TYPES, tzID, tt, status);
1187 parsedID.setTo(tzID);
1198 parseZoneID(text, tmpPos, tzID);
1201 parsedID.setTo(tzID);
1211 parseShortZoneID(text, tmpPos, tzID);
1214 parsedID.setTo(tzID);
2585 TimeZoneFormat::getTimeZoneID(const TimeZoneNames::MatchInfoCollection* matches, int32_t idx, UnicodeString& tzID) const {
2586 if (!matches->getTimeZoneIDAt(idx, tzID)) {
2589 fTimeZoneNames->getReferenceZoneID(mzID, fTargetRegion, tzID);
2592 return tzID;
2665 TimeZoneFormat::parseZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2671 tzID.setToBogus();
2678 tzID.setTo(handler->getID(), -1);
2688 return tzID;
2715 TimeZoneFormat::parseShortZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2721 tzID.setToBogus();
2728 tzID.setTo(handler->getID(), -1);
2738 return tzID;
2743 TimeZoneFormat::parseExemplarLocation(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2746 tzID.setToBogus();
2752 return tzID;
2764 getTimeZoneID(exemplarMatches.getAlias(), matchIdx, tzID);
2768 if (tzID.length() == 0) {
2772 return tzID;