Home
last modified time | relevance | path

Searched refs:_matches (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java232 private Collection<MatchInfo> _matches; field in TZDBTimeZoneNames.TZDBNameSearchHandler
314 if (_matches == null) { in handlePrefixMatch()
315 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
317 _matches.add(minfo); in handlePrefixMatch()
328 if (_matches == null) { in getMatches()
331 return _matches; in getMatches()
DTimeZoneGenericNames.java640 private Collection<GenericMatchInfo> _matches; field in TimeZoneGenericNames.GenericNameSearchHandler
658 if (_matches == null) { in handlePrefixMatch()
659 _matches = new LinkedList<GenericMatchInfo>(); in handlePrefixMatch()
661 _matches.add(matchInfo); in handlePrefixMatch()
674 return _matches; in getMatches()
689 _matches = null; in resetResults()
DTimeZoneNamesImpl.java521 private Collection<MatchInfo> _matches; field in TimeZoneNamesImpl.NameSearchHandler
545 if (_matches == null) { in handlePrefixMatch()
546 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
548 _matches.add(minfo); in handlePrefixMatch()
561 if (_matches == null) { in getMatches()
564 return _matches; in getMatches()
579 _matches = null; in resetResults()
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DTZDBTimeZoneNames.java234 private Collection<MatchInfo> _matches; field in TZDBTimeZoneNames.TZDBNameSearchHandler
316 if (_matches == null) { in handlePrefixMatch()
317 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
319 _matches.add(minfo); in handlePrefixMatch()
330 if (_matches == null) { in getMatches()
333 return _matches; in getMatches()
DTimeZoneGenericNames.java642 private Collection<GenericMatchInfo> _matches; field in TimeZoneGenericNames.GenericNameSearchHandler
660 if (_matches == null) { in handlePrefixMatch()
661 _matches = new LinkedList<GenericMatchInfo>(); in handlePrefixMatch()
663 _matches.add(matchInfo); in handlePrefixMatch()
676 return _matches; in getMatches()
691 _matches = null; in resetResults()
DTimeZoneNamesImpl.java523 private Collection<MatchInfo> _matches; field in TimeZoneNamesImpl.NameSearchHandler
547 if (_matches == null) { in handlePrefixMatch()
548 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
550 _matches.add(minfo); in handlePrefixMatch()
563 if (_matches == null) { in getMatches()
566 return _matches; in getMatches()
581 _matches = null; in resetResults()
/external/autotest/site_utils/rpm_control_system/
DBeautifulSoup.py924 or (markup and self._matches(markup, self.name)) \
925 or (not markup and self._matches(markupName, self.name)):
940 if not self._matches(attrValue, matchAgainst):
970 if self._matches(markup, self.text):
977 def _matches(self, markup, matchAgainst): member in SoupStrainer