Searched refs:specificMatches (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | tzfmt.cpp | 950 …LocalPointer<TimeZoneNames::MatchInfoCollection> specificMatches(fTimeZoneNames->find(text, startI… in parse() local 955 if (!specificMatches.isNull()) { in parse() 958 for (int32_t i = 0; i < specificMatches->size(); i++) { in parse() 959 matchPos = startIdx + specificMatches->getMatchLengthAt(i); in parse() 967 *timeType = getTimeType(specificMatches->getNameTypeAt(matchIdx)); in parse() 970 getTimeZoneID(specificMatches.getAlias(), matchIdx, tzID); in parse() 1200 …LocalPointer<TimeZoneNames::MatchInfoCollection> specificMatches(fTimeZoneNames->find(text, startI… in parse() local 1207 if (!specificMatches.isNull()) { in parse() 1208 for (int32_t i = 0; i < specificMatches->size(); i++) { in parse() 1209 if (startIdx + specificMatches->getMatchLengthAt(i) > matchPos) { in parse() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TimeZoneFormat.java | 1140 Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, nameTypes); in parse() local 1141 if (specificMatches != null) { in parse() 1143 for (MatchInfo match : specificMatches) { in parse() 1354 … Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, ALL_SIMPLE_NAME_TYPES); in parse() 1357 if (specificMatches != null) { in parse() 1358 for (MatchInfo match : specificMatches) { in parse()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 1201 Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, nameTypes); in parse() local 1202 if (specificMatches != null) { in parse() 1204 for (MatchInfo match : specificMatches) { in parse() 1415 … Collection<MatchInfo> specificMatches = _tznames.find(text, startIdx, ALL_SIMPLE_NAME_TYPES); in parse() 1418 if (specificMatches != null) { in parse() 1419 for (MatchInfo match : specificMatches) { in parse()
|