HomeSort by relevance Sort by last modified time
    Searched defs:kMaxVisitsToScore (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/chrome/browser/history/
scored_history_match.h 30 static const size_t kMaxVisitsToScore;
120 // Examines the first kMaxVisitsToScore and return a score (higher is
scored_history_match.cc 31 const size_t ScoredHistoryMatch::kMaxVisitsToScore = 10;
526 // most kMaxVisitsToScore visits, where each visit is weighted using
528 // kMaxVisitsToScore as the denominator for the average regardless of
530 // fewer visits than kMaxVisitsToScore.
532 for (size_t i = 0; i < std::min(visits.size(), kMaxVisitsToScore); ++i) {
541 return visits.size() * summed_visit_points / kMaxVisitsToScore;

Completed in 2501 milliseconds