Home | History | Annotate | Download | only in autocomplete

Lines Matching refs:match

212           // Manually re-jigger the parsed parts to match |text| (without the
508 void AutocompleteProvider::DeleteMatch(const AutocompleteMatch& match) {
611 // new low-relevance match appear and then quickly get pushed off the bottom;
632 void AutocompleteResult::AddMatch(const AutocompleteMatch& match) {
635 std::upper_bound(begin(), end(), match, &AutocompleteMatch::MoreRelevant);
640 matches_.insert(insertion_point, match);
703 // Returns the match at the given index.
738 bool AutocompleteResult::HasMatchByDestination(const AutocompleteMatch& match,
741 if (i->destination_url == match.destination_url)
764 AutocompleteMatch match = *i;
765 match.relevance = std::min(max_relevance, match.relevance);
766 match.from_previous = true;
767 AddMatch(match);
898 void AutocompleteController::DeleteMatch(const AutocompleteMatch& match) {
899 DCHECK(match.deletable);
900 match.provider->DeleteMatch(match); // This may synchronously call back to
903 // not done, we might attempt to redisplay the deleted match. Make sure
944 // This conditional needs to match the conditional in Start that invokes
954 // We've gotten async results. Send notification that the default match
956 // change for the default match even though the fill into edit hasn't