Home | History | Annotate | Download | only in history

Lines Matching refs:results

231     std::vector<PageUsageData*>* results) {
237 // used to lock results into position. But the rest of our code currently
262 results->push_back(pud);
288 results->push_back(pud);
291 // Limit to the top kResultCount results.
292 sort(results->begin(), results->end(), PageUsageData::Predicate);
293 if (static_cast<int>(results->size()) > max_result_count) {
294 STLDeleteContainerPointers(results->begin() + max_result_count,
295 results->end());
296 results->resize(max_result_count);
308 for (size_t i = 0; i < results->size(); ++i) {
309 PageUsageData* pud = (*results)[i];