Home | History | Annotate | Download | only in autocomplete

Lines Matching refs:MATCH

85 // TODO(mrossetti): Determine when a match should be deletable.
86 void HistoryQuickProvider::DeleteMatch(const AutocompleteMatch& match) {}
129 // Discount a very high score when a) a match doesn't start at the beginning
141 AutocompleteMatch match(this, score, !!info.visit_count(),
146 match.destination_url = info.url();
147 DCHECK(match.destination_url.is_valid());
152 match.fill_into_edit =
157 match.inline_autocomplete_offset = inline_autocomplete_offset;
158 DCHECK((match.inline_autocomplete_offset == string16::npos) ||
159 (match.inline_autocomplete_offset <= match.fill_into_edit.length()));
164 match.contents =
170 match.contents_class = SpansFromTermMatch(new_matches, match.contents.size());
173 match.description = info.title();
174 match.description_class = SpansFromTermMatch(history_match.title_matches,
175 match.description.size());
177 return match;
231 ACMatchClassification::MATCH));