Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTZDBTimeZoneNames.java223 private Collection<MatchInfo> _matches; field in TZDBTimeZoneNames.TZDBNameSearchHandler
304 if (_matches == null) { in handlePrefixMatch()
305 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
307 _matches.add(minfo); in handlePrefixMatch()
318 if (_matches == null) { in getMatches()
321 return _matches; in getMatches()
DTimeZoneNamesImpl.java357 private Collection<MatchInfo> _matches; field in TimeZoneNamesImpl.NameSearchHandler
380 if (_matches == null) { in handlePrefixMatch()
381 _matches = new LinkedList<MatchInfo>(); in handlePrefixMatch()
383 _matches.add(minfo); in handlePrefixMatch()
396 if (_matches == null) { in getMatches()
399 return _matches; in getMatches()
414 _matches = null; in resetResults()
DTimeZoneGenericNames.java625 private Collection<GenericMatchInfo> _matches; field in TimeZoneGenericNames.GenericNameSearchHandler
646 if (_matches == null) { in handlePrefixMatch()
647 _matches = new LinkedList<GenericMatchInfo>(); in handlePrefixMatch()
649 _matches.add(matchInfo); in handlePrefixMatch()
662 return _matches; in getMatches()
677 _matches = null; in resetResults()
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/beautifulsoup/
DBeautifulSoup.py921 or (markup and self._matches(markup, self.name)) \
922 or (not markup and self._matches(markupName, self.name)):
937 if not self._matches(attrValue, matchAgainst):
967 if self._matches(markup, self.text):
974 def _matches(self, markup, matchAgainst): member in SoupStrainer