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

  /external/chromium_org/chrome/browser/history/
scored_history_match.h 160 // |days_ago_to_recency_score_| is a simple array mapping how long
165 static float* days_ago_to_recency_score_; member in class:history::ScoredHistoryMatch
scored_history_match.cc 35 float* ScoredHistoryMatch::days_ago_to_recency_score_ = NULL; member in class:history::ScoredHistoryMatch
475 if (days_ago_to_recency_score_ == NULL) {
476 days_ago_to_recency_score_ = new float[kDaysToPrecomputeRecencyScoresFor];
483 return days_ago_to_recency_score_[
513 days_ago_to_recency_score_[days_ago] = unnormalized_recency_score / 100.0;
515 DCHECK_LE(days_ago_to_recency_score_[days_ago],
516 days_ago_to_recency_score_[days_ago - 1]);

Completed in 833 milliseconds