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

  /external/chromium_org/chrome/browser/history/
scored_history_match.h 25 class ScoredHistoryMatch : public history::HistoryMatch {
32 ScoredHistoryMatch(); // Required by STL.
49 ScoredHistoryMatch(const URLRow& row,
58 ~ScoredHistoryMatch();
63 static bool MatchScoreGreater(const ScoredHistoryMatch& m1,
64 const ScoredHistoryMatch& m2);
148 // construction of ScoredHistoryMatch, they may contain all matches, but
204 typedef std::vector<ScoredHistoryMatch> ScoredHistoryMatches;
scored_history_match.cc 28 // ScoredHistoryMatch ----------------------------------------------------------
31 const size_t ScoredHistoryMatch::kMaxVisitsToScore = 10;
32 const int ScoredHistoryMatch::kDaysToPrecomputeRecencyScoresFor = 366;
33 const int ScoredHistoryMatch::kMaxRawTermScore = 30;
34 float* ScoredHistoryMatch::raw_term_score_to_topicality_score_ = NULL;
35 float* ScoredHistoryMatch::days_ago_to_recency_score_ = NULL;
36 bool ScoredHistoryMatch::initialized_ = false;
37 int ScoredHistoryMatch::bookmark_value_ = 1;
38 bool ScoredHistoryMatch::allow_tld_matches_ = false;
39 bool ScoredHistoryMatch::allow_scheme_matches_ = false
    [all...]
scored_history_match_unittest.cc 103 ScoredHistoryMatch scored_match;
126 ScoredHistoryMatch scored_a(row_a, visits_a, std::string(),
136 ScoredHistoryMatch scored_b(row_b, visits_b, std::string(),
147 ScoredHistoryMatch scored_c(row_c, visits_c, std::string(),
160 ScoredHistoryMatch scored_d(row_d, visits_d, std::string(),
171 ScoredHistoryMatch scored_e(row_e, visits_e, std::string(),
178 ScoredHistoryMatch scored_f(row_a, visits_a, std::string(),
196 ScoredHistoryMatch scored(row, visits, std::string(),
200 base::AutoReset<int> reset(&ScoredHistoryMatch::bookmark_value_, 5);
203 ScoredHistoryMatch scored_with_bookmark
    [all...]
url_index_private_data.cc 120 // ScoredHistoryMatch::GetFrequency() hopes to use.
121 DCHECK_GE(kMaxVisitsToStoreInCache, ScoredHistoryMatch::kMaxVisitsToScore);
255 ScoredHistoryMatch::MatchScoreGreater);
259 ScoredHistoryMatch::MatchScoreGreater);
730 // ScoredHistoryMatch::GetFrequency() hopes to use.
731 DCHECK_GE(kMaxVisitsToStoreInCache, ScoredHistoryMatch::kMaxVisitsToScore);
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.h 21 class ScoredHistoryMatch;
57 const history::ScoredHistoryMatch& history_match,
history_quick_provider.cc 48 using history::ScoredHistoryMatch;
208 const ScoredHistoryMatch& history_match(*match_iter);
225 const ScoredHistoryMatch& history_match,
history_url_provider.cc 718 history::ScoredHistoryMatch::FilterTermMatchesByWordStarts(
    [all...]

Completed in 705 milliseconds