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

  /external/chromium_org/chrome/browser/history/
scored_history_match.h 23 struct ScoredHistoryMatch : public history::HistoryMatch {
24 ScoredHistoryMatch(); // Required by STL.
36 ScoredHistoryMatch(const URLRow& row,
44 ~ScoredHistoryMatch();
49 static bool MatchScoreGreater(const ScoredHistoryMatch& m1,
50 const ScoredHistoryMatch& m2);
143 typedef std::vector<ScoredHistoryMatch> ScoredHistoryMatches;
scored_history_match.cc 26 // ScoredHistoryMatch ----------------------------------------------------------
28 bool ScoredHistoryMatch::initialized_ = false;
29 const size_t ScoredHistoryMatch::kMaxVisitsToScore = 10u;
30 bool ScoredHistoryMatch::also_do_hup_like_scoring = false;
31 int ScoredHistoryMatch::max_assigned_score_for_non_inlineable_matches = -1;
33 ScoredHistoryMatch::ScoredHistoryMatch()
42 ScoredHistoryMatch::ScoredHistoryMatch(const URLRow& row,
205 ScoredHistoryMatch::~ScoredHistoryMatch() {
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 60 struct ScoredHistoryMatch : public HistoryMatch {
61 ScoredHistoryMatch(); // Required by STL.
62 explicit ScoredHistoryMatch(const URLRow& url_info);
63 ~ScoredHistoryMatch();
65 static bool MatchScoreGreater(const ScoredHistoryMatch& m1,
66 const ScoredHistoryMatch& m2);
75 typedef std::vector<ScoredHistoryMatch> ScoredHistoryMatches;
335 // index. Returns a ScoredHistoryMatch structure with the raw score and
337 static ScoredHistoryMatch ScoredMatchForURL(
in_memory_url_index.cc 58 ScoredHistoryMatch::ScoredHistoryMatch()
62 ScoredHistoryMatch::ScoredHistoryMatch(const URLRow& url_info)
67 ScoredHistoryMatch::~ScoredHistoryMatch() {}
70 bool ScoredHistoryMatch::MatchScoreGreater(const ScoredHistoryMatch& m1,
71 const ScoredHistoryMatch& m2) {
375 ScoredHistoryMatch::MatchScoreGreater)
    [all...]

Completed in 386 milliseconds