/external/chromium_org/chrome/browser/history/ |
scored_history_match.h | 41 const RowWordStarts& word_starts, 57 // |word_starts| explains where word boundaries are. Its parts (title 64 const RowWordStarts& word_starts);
|
scored_history_match_unittest.cc | 43 void PopulateWordStarts(const URLRow& url_row, RowWordStarts* word_starts); 73 const URLRow& url_row, RowWordStarts* word_starts) { 75 &word_starts->url_word_starts_); 76 String16SetFromString16(url_row.title(), &word_starts->title_word_starts_); 100 RowWordStarts word_starts; local 101 String16SetFromString16(url, &word_starts.url_word_starts_); 102 String16SetFromString16(title, &word_starts.title_word_starts_); 104 1, url, url_matches, title_matches, word_starts); 180 RowWordStarts word_starts; local 187 word_starts, now, NULL) [all...] |
in_memory_url_index_types.cc | 107 WordStarts* word_starts) { 109 String16VectorFromString16(cleaned_uni_string, false, word_starts); 119 WordStarts* word_starts) { 120 if (word_starts) 121 word_starts->clear(); 141 if (!word_starts) 145 word_starts->push_back(word_start);
|
scored_history_match.cc | 47 const RowWordStarts& word_starts, 147 terms.size(), url, url_matches, title_matches, word_starts); 252 const RowWordStarts& word_starts) { 274 word_starts.url_word_starts_.begin(); 276 word_starts.url_word_starts_.end(); 325 next_word_starts = word_starts.title_word_starts_.begin(); 326 end_word_starts = word_starts.title_word_starts_.end();
|
url_index_private_data.cc | 321 RowWordStarts word_starts; local 322 AddRowWordsToIndex(row_to_update, &word_starts, languages); 323 word_starts_map_[row_id] = word_starts; 727 RowWordStarts word_starts; local 728 AddRowWordsToIndex(new_row, &word_starts, languages); 729 word_starts_map_[history_id] = word_starts; 754 RowWordStarts* word_starts, 761 word_starts ? &word_starts->url_word_starts_ : NULL); 764 word_starts ? &word_starts->title_word_starts_ : NULL) 1220 RowWordStarts word_starts; local 1238 RowWordStarts word_starts; local [all...] |
in_memory_url_index_types.h | 93 // passing |cleaned_uni_string| to this function. If |word_starts| is 96 // |word_starts|. These offsets are collected only up to the first 99 WordStarts* word_starts); 111 // the comments in base/i18n/break_iterator.h.) If |word_starts| is 112 // not NULL then clears and pushes the word starts onto |word_starts|. 122 WordStarts* word_starts);
|
url_index_private_data.h | 264 // calculate the word starts in each, saving the starts in |word_starts|. 268 RowWordStarts* word_starts,
|