Searched refs:raw_score (Results 1 – 5 of 5) sorted by relevance
/external/chromium/chrome/browser/history/ |
D | in_memory_url_index_unittest.cc | 207 EXPECT_GE(matches[0].raw_score, matches[1].raw_score); in TEST_F() 216 EXPECT_GT(matches[0].raw_score, 900); in TEST_F() 231 EXPECT_LT(matches[0].raw_score, 500); in TEST_F() 450 EXPECT_GT(scored_a.raw_score, scored_b.raw_score); in TEST_F() 454 EXPECT_LT(scored_a.raw_score, scored_c.raw_score); in TEST_F() 460 EXPECT_GT(scored_d.raw_score, scored_e.raw_score); in TEST_F() 465 EXPECT_GT(scored_f.raw_score, scored_a.raw_score); in TEST_F() 470 EXPECT_GT(scored_g.raw_score, scored_a.raw_score); in TEST_F() 475 EXPECT_GT(scored_h.raw_score, scored_a.raw_score); in TEST_F()
|
D | in_memory_url_index.cc | 59 : raw_score(0), in ScoredHistoryMatch() 64 raw_score(0), in ScoredHistoryMatch() 72 return m1.raw_score >= m2.raw_score; in MatchScoreGreater() 778 match.raw_score = std::min(kScoreRank[0], (term_score + score + in ScoredMatchForURL() 827 int raw_score = order_value + start_value + complete_value; in ScoreComponentForMatches() local 832 return ScoreForValue(raw_score, kTermScoreLevel); in ScoreComponentForMatches() 854 if (match.raw_score > 0) in operator ()()
|
D | in_memory_url_index.h | 70 int raw_score; member
|
/external/chromium/chrome/browser/autocomplete/ |
D | history_quick_provider.cc | 108 if (history_match.raw_score > 0) { in DoAutocomplete() 125 int score = CalculateRelevance(history_match.raw_score, in QuickMatchToACMatch() 199 int HistoryQuickProvider::CalculateRelevance(int raw_score, in CalculateRelevance() argument 211 return raw_score; in CalculateRelevance()
|
D | history_quick_provider.h | 57 static int CalculateRelevance(int raw_score,
|