Searched refs:tznamesMatches (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TimeZoneGenericNames.java | 709 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch() local 710 if (tznamesMatches != null) { in findBestMatch() 712 for (MatchInfo match : tznamesMatches) { in findBestMatch() 776 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find() local 777 if (tznamesMatches != null) { in find() 779 for (MatchInfo match : tznamesMatches) { in find() 839 Collection<MatchInfo> tznamesMatches = null; in findTimeZoneNames() local 854 tznamesMatches = _tznames.find(text, start, nameTypes); in findTimeZoneNames() 856 return tznamesMatches; in findTimeZoneNames()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | TimeZoneGenericNames.java | 714 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch() local 715 if (tznamesMatches != null) { in findBestMatch() 717 for (MatchInfo match : tznamesMatches) { in findBestMatch() 781 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find() local 782 if (tznamesMatches != null) { in find() 784 for (MatchInfo match : tznamesMatches) { in find() 844 Collection<MatchInfo> tznamesMatches = null; in findTimeZoneNames() local 859 tznamesMatches = _tznames.find(text, start, nameTypes); in findTimeZoneNames() 861 return tznamesMatches; in findTimeZoneNames()
|
/external/icu/icu4c/source/i18n/ |
D | tzgnames.cpp | 894 …TimeZoneNames::MatchInfoCollection *tznamesMatches = findTimeZoneNames(text, start, types, status); in findBestMatch() local 905 if (tznamesMatches != NULL) { in findBestMatch() 907 for (int32_t i = 0; i < tznamesMatches->size(); i++) { in findBestMatch() 908 int32_t len = tznamesMatches->getMatchLengthAt(i); in findBestMatch() 911 if (!tznamesMatches->getTimeZoneIDAt(i, bestMatchTzID)) { in findBestMatch() 913 if (tznamesMatches->getMetaZoneIDAt(i, mzID)) { in findBestMatch() 917 UTimeZoneNameType nameType = tznamesMatches->getNameTypeAt(i); in findBestMatch() 937 delete tznamesMatches; in findBestMatch()
|