Lines Matching refs:classifications
164 const ACMatchClassifications& classifications) const {
166 DCHECK(classifications.size() == 0);
170 // The classifications should always cover the whole string.
171 DCHECK(!classifications.empty()) << "No classification for text";
172 DCHECK(classifications[0].offset == 0) << "Classification misses beginning";
173 if (classifications.size() == 1)
176 // The classifications should always be sorted.
177 size_t last_offset = classifications[0].offset;
178 for (ACMatchClassifications::const_iterator i(classifications.begin() + 1);
179 i != classifications.end(); ++i) {