Home | History | Annotate | Download | only in history

Lines Matching refs:results

159     // probably better to just not give FTS results than strange errors when
304 std::vector<Match>* results,
342 // Fill the results into the vector (avoid copying the URL with Swap()).
343 results->resize(results->size() + 1);
344 Match& match = results->at(results->size() - 1);
367 // When we have returned all the results possible (or determined that there
370 if (results->empty() ||
371 options.max_count == 0 || // Special case for wanting all the results.
372 static_cast<int>(results->size()) < options.max_count) {
375 // Since we got the results in order, we know the last item is the last
377 *first_time_searched = results->back().time;