Home | History | Annotate | Download | only in omnibox

Lines Matching refs:match

66 AutocompleteMatch::AutocompleteMatch(const AutocompleteMatch& match)
67 : provider(match.provider),
68 relevance(match.relevance),
69 typed_count(match.typed_count),
70 deletable(match.deletable),
71 fill_into_edit(match.fill_into_edit),
72 inline_autocompletion(match.inline_autocompletion),
73 allowed_to_be_default_match(match.allowed_to_be_default_match),
74 destination_url(match.destination_url),
75 stripped_destination_url(match.stripped_destination_url),
76 contents(match.contents),
77 contents_class(match.contents_class),
78 description(match.description),
79 description_class(match.description_class),
80 answer_contents(match.answer_contents),
81 answer_type(match.answer_type),
82 transition(match.transition),
83 is_history_what_you_typed_match(match.is_history_what_you_typed_match),
84 type(match.type),
85 associated_keyword(match.associated_keyword.get() ?
86 new AutocompleteMatch(*match.associated_keyword) : NULL),
87 keyword(match.keyword),
88 from_previous(match.from_previous),
89 search_terms_args(match.search_terms_args.get() ?
90 new TemplateURLRef::SearchTermsArgs(*match.search_terms_args) :
92 additional_info(match.additional_info),
93 duplicate_matches(match.duplicate_matches) {
100 const AutocompleteMatch& match) {
101 if (this == &match)
104 provider = match.provider;
105 relevance = match.relevance;
106 typed_count = match.typed_count;
107 deletable = match.deletable;
108 fill_into_edit = match.fill_into_edit;
109 inline_autocompletion = match.inline_autocompletion;
110 allowed_to_be_default_match = match.allowed_to_be_default_match;
111 destination_url = match.destination_url;
112 stripped_destination_url = match.stripped_destination_url;
113 contents = match.contents;
114 contents_class = match.contents_class;
115 description = match.description;
116 description_class = match.description_class;
117 answer_contents = match.answer_contents;
118 answer_type = match.answer_type;
119 transition = match.transition;
120 is_history_what_you_typed_match = match.is_history_what_you_typed_match;
121 type = match.type;
122 associated_keyword.reset(match.associated_keyword.get() ?
123 new AutocompleteMatch(*match.associated_keyword) : NULL);
124 keyword = match.keyword;
125 from_previous = match.from_previous;
126 search_terms_args.reset(match.search_terms_args.get() ?
127 new TemplateURLRef::SearchTermsArgs(*match.search_terms_args) : NULL);
128 additional_info = match.additional_info;
129 duplicate_matches = match.duplicate_matches;
204 // Mark pre-match portion of string (if any).
211 // No match, above classification will suffice for whole string.
214 // Classifying an empty match makes no sense and will lead to validation
218 (style | ACMatchClassification::MATCH) & ~ACMatchClassification::DIM));
220 // Mark post-match portion of string (if any).