Home | History | Annotate | Download | only in autocomplete

Lines Matching refs:matches

65         // We can't get rid of What-You-Typed or Bookmarked matches,
76 DCHECK(found) << "Asked to delete a URL that isn't in our set of matches";
81 const history::TermMatches& matches,
87 if (matches.empty()) {
92 if (matches[0].offset)
94 size_t match_count = matches.size();
96 size_t offset = matches[i].offset;
99 // Skip all adjacent matches.
101 offset += matches[i].length;
103 } while ((i < match_count) && (offset == matches[i].offset));