Home | History | Annotate | Download | only in history

Lines Matching defs:results_

400   size_t size() const { return results_.size(); }
401 bool empty() const { return results_.empty(); }
403 URLResult& operator[](size_t i) { return *results_[i]; }
404 const URLResult& operator[](size_t i) const { return *results_[i]; }
406 URLResultVector::const_iterator begin() const { return results_.begin(); }
407 URLResultVector::const_iterator end() const { return results_.end(); }
409 return results_.rbegin();
412 return results_.rend();
446 // Maps the given URL to a list of indices into results_ which identify each
453 // is at the given index in the results_.
467 URLResultVector results_;
469 // Maps URLs to entries in results_.