Home | History | Annotate | Download | only in i18n

Lines Matching refs:tzID

855     UnicodeString tzID(tzIDBuf, 0, UPRV_LENGTHOF(tzIDBuf));
964 getTimeZoneID(specificMatches.getAlias(), matchIdx, tzID);
965 U_ASSERT(!tzID.isEmpty());
966 return TimeZone::createTimeZone(tzID);
997 getTimeZoneID(tzdbNameMatches.getAlias(), matchIdx, tzID);
998 U_ASSERT(!tzID.isEmpty());
999 return TimeZone::createTimeZone(tzID);
1032 len = gnames->findBestMatch(text, startIdx, genericNameTypes, tzID, tt, status);
1044 U_ASSERT(!tzID.isEmpty());
1045 return TimeZone::createTimeZone(tzID);
1055 parseZoneID(text, tmpPos, tzID);
1058 return TimeZone::createTimeZone(tzID);
1067 parseShortZoneID(text, tmpPos, tzID);
1070 return TimeZone::createTimeZone(tzID);
1079 parseExemplarLocation(text, tmpPos, tzID);
1082 return TimeZone::createTimeZone(tzID);
1252 genMatchLen = gnames->findBestMatch(text, startIdx, ALL_GENERIC_NAME_TYPES, tzID, tt, status);
1261 parsedID.setTo(tzID);
1272 parseZoneID(text, tmpPos, tzID);
1275 parsedID.setTo(tzID);
1285 parseShortZoneID(text, tmpPos, tzID);
1288 parsedID.setTo(tzID);
2681 TimeZoneFormat::getTimeZoneID(const TimeZoneNames::MatchInfoCollection* matches, int32_t idx, UnicodeString& tzID) const {
2682 if (!matches->getTimeZoneIDAt(idx, tzID)) {
2686 fTimeZoneNames->getReferenceZoneID(mzID, fTargetRegion, tzID);
2689 return tzID;
2762 TimeZoneFormat::parseZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2768 tzID.setToBogus();
2775 tzID.setTo(handler->getID(), -1);
2785 return tzID;
2812 TimeZoneFormat::parseShortZoneID(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2818 tzID.setToBogus();
2825 tzID.setTo(handler->getID(), -1);
2835 return tzID;
2840 TimeZoneFormat::parseExemplarLocation(const UnicodeString& text, ParsePosition& pos, UnicodeString& tzID) const {
2843 tzID.setToBogus();
2849 return tzID;
2861 getTimeZoneID(exemplarMatches.getAlias(), matchIdx, tzID);
2865 if (tzID.length() == 0) {
2869 return tzID;