Searched refs:_matches (Results 1 – 4 of 4) sorted by relevance
223 private Collection<MatchInfo> _matches; field in TZDBTimeZoneNames.TZDBNameSearchHandler304 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()
357 private Collection<MatchInfo> _matches; field in TimeZoneNamesImpl.NameSearchHandler380 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()
625 private Collection<GenericMatchInfo> _matches; field in TimeZoneGenericNames.GenericNameSearchHandler646 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()
921 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