Home | History | Annotate | Download | only in autocomplete

Lines Matching refs:styles

84     ACMatchClassifications styles;
88 styles.push_back(ACMatchClassification(0, highlight ? kMatch : kUrl));
91 styles.push_back(ACMatchClassification(offset, kUrl));
94 base::string16(), styles);
97 base::string16(), styles);
100 base::string16(), styles);
115 ACMatchClassifications styles;
116 styles.push_back(ACMatchClassification(0, kMatch));
121 styles.push_back(ACMatchClassification(corrected_length, kUrl));
122 AddMatch(match, match.substr(corrected_length), styles);
132 ACMatchClassifications styles;
134 styles.push_back(ACMatchClassification(0, kMatch));
137 styles.push_back(ACMatchClassification(match_length, kUrl));
138 AddMatch(match_string, match_string.substr(match_length), styles);
160 const ACMatchClassifications& styles) {
167 match.contents_class = styles;