/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.h | 57 static int CalculateRelevance(int raw_score,
|
history_quick_provider.cc | 108 if (history_match.raw_score > 0) { 125 int score = CalculateRelevance(history_match.raw_score, 199 int HistoryQuickProvider::CalculateRelevance(int raw_score, 211 return raw_score;
|
/external/chromium_org/chrome/browser/history/ |
scored_history_match_unittest.cc | 134 EXPECT_GT(scored_b.raw_score(), scored_a.raw_score()); 145 EXPECT_GT(scored_c.raw_score(), scored_a.raw_score()); 158 EXPECT_GT(scored_d.raw_score(), scored_a.raw_score()); 169 EXPECT_LT(scored_e.raw_score(), 1400); 176 EXPECT_EQ(scored_f.raw_score(), 0); 226 EXPECT_GT(scored_with_bookmark.raw_score(), scored.raw_score()); [all...] |
scored_history_match.h | 62 int raw_score() const { return raw_score_; } function in class:history::ScoredHistoryMatch
|
in_memory_url_index_unittest.cc | 471 EXPECT_GE(matches[0].raw_score(), matches[1].raw_score()); 478 EXPECT_GT(matches[0].raw_score(), 900); 491 EXPECT_LT(matches[0].raw_score(), 500); [all...] |
url_index_private_data.cc | [all...] |
/external/chromium/chrome/browser/history/ |
in_memory_url_index_unittest.cc | 207 EXPECT_GE(matches[0].raw_score, matches[1].raw_score); 216 EXPECT_GT(matches[0].raw_score, 900); 231 EXPECT_LT(matches[0].raw_score, 500); 450 EXPECT_GT(scored_a.raw_score, scored_b.raw_score); 454 EXPECT_LT(scored_a.raw_score, scored_c.raw_score); 460 EXPECT_GT(scored_d.raw_score, scored_e.raw_score); [all...] |
in_memory_url_index.cc | 59 : raw_score(0), 64 raw_score(0), 72 return m1.raw_score >= m2.raw_score; 778 match.raw_score = std::min(kScoreRank[0], (term_score + score + 827 int raw_score = order_value + start_value + complete_value; local 832 return ScoreForValue(raw_score, kTermScoreLevel); [all...] |
in_memory_url_index.h | 70 int raw_score; member in struct:history::ScoredHistoryMatch
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_quick_provider.cc | 228 matches.begin()->raw_score() : 243 max_match_score = std::min(max_match_score, history_match.raw_score());
|
/packages/inputmethods/PinyinIME/jni/include/ |
userdict.h | 294 int extract_score_freq(int raw_score); 296 uint64 extract_score_lmt(int raw_score);
|
/packages/inputmethods/PinyinIME/jni/share/ |
userdict.cpp | 73 inline LmaScoreType UserDict::translate_score(int raw_score) { 75 uint32 ori_freq = extract_score_freq(raw_score); 77 uint64 lmt_off = ((raw_score & 0xffff0000) >> 16); 99 inline int UserDict::extract_score_freq(int raw_score) { 101 int freq = (raw_score & 0x0000ffff); 105 inline uint64 UserDict::extract_score_lmt(int raw_score) { 106 uint64 lmt = ((raw_score & 0xffff0000) >> 16); [all...] |