HomeSort by relevance Sort by last modified time
    Searched refs:old_matches (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_result.cc 91 const AutocompleteResult& old_matches,
93 if (old_matches.empty())
98 CopyFrom(old_matches);
121 old_matches.BuildProviderToMatches(&old_matches_per_provider);
332 const ACMatches& old_matches,
334 if (new_matches.size() >= old_matches.size())
337 size_t delta = old_matches.size() - new_matches.size();
346 for (ACMatches::const_reverse_iterator i(old_matches.rbegin());
347 i != old_matches.rend() && delta > 0; ++i) {
autocomplete_result.h 70 // Copies matches from |old_matches| to provide a consistant result set. See
73 const AutocompleteResult& old_matches,
176 // Copies matches into this result. |old_matches| gives the matches from the
180 const ACMatches& old_matches,
  /external/chromium_org/chrome/renderer/extensions/
content_watcher.cc 120 std::vector<base::StringPiece>& old_matches = matching_selectors_[frame]; local
121 if (new_matches == old_matches)
125 swap(old_matches, new_matches);
  /external/chromium/chrome/browser/autocomplete/
autocomplete.cc 588 const AutocompleteResult& old_matches) {
589 if (old_matches.empty())
594 CopyFrom(old_matches);
617 old_matches.BuildProviderToMatches(&old_matches_per_provider);
747 void AutocompleteResult::MergeMatchesByProvider(const ACMatches& old_matches,
749 if (new_matches.size() >= old_matches.size())
752 size_t delta = old_matches.size() - new_matches.size();
761 for (ACMatches::const_reverse_iterator i = old_matches.rbegin();
762 i != old_matches.rend() && delta > 0; ++i) {
    [all...]
autocomplete.h 507 // Copies matches from |old_matches| to provide a consistant result set. See
510 const AutocompleteResult& old_matches);
569 // Copies matches into this result. |old_matches| gives the matches from the
571 void MergeMatchesByProvider(const ACMatches& old_matches,
    [all...]

Completed in 730 milliseconds