Searched refs:tznamesMatches (Results 1 – 3 of 3) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | TimeZoneGenericNames.java | 711 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in findBestMatch() local 712 if (tznamesMatches != null) { in findBestMatch() 714 for (MatchInfo match : tznamesMatches) { in findBestMatch() 778 Collection<MatchInfo> tznamesMatches = findTimeZoneNames(text, start, genericTypes); in find() local 779 if (tznamesMatches != null) { in find() 781 for (MatchInfo match : tznamesMatches) { in find() 841 Collection<MatchInfo> tznamesMatches = null; in findTimeZoneNames() local 856 tznamesMatches = _tznames.find(text, start, nameTypes); in findTimeZoneNames() 858 return tznamesMatches; in findTimeZoneNames()
|
/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/icu4c/source/i18n/ |
D | tzgnames.cpp | 893 …TimeZoneNames::MatchInfoCollection *tznamesMatches = findTimeZoneNames(text, start, types, status); in findBestMatch() local 904 if (tznamesMatches != NULL) { in findBestMatch() 906 for (int32_t i = 0; i < tznamesMatches->size(); i++) { in findBestMatch() 907 int32_t len = tznamesMatches->getMatchLengthAt(i); in findBestMatch() 910 if (!tznamesMatches->getTimeZoneIDAt(i, bestMatchTzID)) { in findBestMatch() 912 if (tznamesMatches->getMetaZoneIDAt(i, mzID)) { in findBestMatch() 916 UTimeZoneNameType nameType = tznamesMatches->getNameTypeAt(i); in findBestMatch() 936 delete tznamesMatches; in findBestMatch()
|