/external/chromium_org/chrome/browser/history/ |
scored_history_match_unittest.cc | 46 void PopulateWordStarts(const URLRow& url_row, RowWordStarts* word_starts); 76 const URLRow& url_row, RowWordStarts* word_starts) { 78 &word_starts->url_word_starts_); 79 String16SetFromString16(url_row.title(), &word_starts->title_word_starts_); 106 RowWordStarts word_starts; local 107 String16SetFromString16(url, &word_starts.url_word_starts_); 108 String16SetFromString16(title, &word_starts.title_word_starts_); 111 word_starts); 192 RowWordStarts word_starts; local 193 PopulateWordStarts(row, &word_starts); 218 RowWordStarts word_starts; local 244 RowWordStarts word_starts; local 265 RowWordStarts word_starts; local [all...] |
scored_history_match.h | 39 // boundaries, the locations of which are stored in |word_starts|. For some 55 const RowWordStarts& word_starts, 80 const WordStarts& word_starts, 106 const RowWordStarts& word_starts);
|
scored_history_match.cc | 56 const RowWordStarts& word_starts, 154 terms.size(), url, terms_to_word_starts_offsets, word_starts); 265 const WordStarts& word_starts, 272 WordStarts::const_iterator next_word_starts = word_starts.begin(); 273 WordStarts::const_iterator end_word_starts = word_starts.end(); 298 const RowWordStarts& word_starts) { 320 word_starts.url_word_starts_.begin(); 322 word_starts.url_word_starts_.end(); 341 url_matches_, terms_to_word_starts_offsets, word_starts.url_word_starts_, 348 word_starts.url_word_starts_, 0, colon_pos) [all...] |
in_memory_url_index_types.cc | 95 WordStarts* word_starts) { 97 String16VectorFromString16(cleaned_uni_string, false, word_starts); 108 WordStarts* word_starts) { 109 if (word_starts) 110 word_starts->clear(); 130 if (!word_starts) 134 word_starts->push_back(word_start);
|
url_index_private_data.cc | 319 RowWordStarts word_starts; local 320 AddRowWordsToIndex(row_to_update, &word_starts, languages); 321 word_starts_map_[row_id] = word_starts; 714 RowWordStarts word_starts; local 715 AddRowWordsToIndex(new_row, &word_starts, languages); 716 word_starts_map_[history_id] = word_starts; 741 RowWordStarts* word_starts, 749 word_starts ? &word_starts->url_word_starts_ : NULL); 753 word_starts ? &word_starts->title_word_starts_ : NULL) 1206 RowWordStarts word_starts; local 1224 RowWordStarts word_starts; local [all...] |
in_memory_url_index_types.h | 83 // passing |cleaned_uni_string| to this function. If |word_starts| is 86 // |word_starts|. These offsets are collected only up to the first 89 WordStarts* word_starts); 101 // the comments in base/i18n/break_iterator.h.) If |word_starts| is 102 // not NULL then clears and pushes the word starts onto |word_starts|. 113 WordStarts* word_starts);
|
url_index_private_data.h | 267 // calculate the word starts in each, saving the starts in |word_starts|. 271 RowWordStarts* word_starts,
|
/external/chromium_org/content/renderer/accessibility/ |
blink_ax_tree_source.cc | 218 std::vector<int32> word_starts; local 220 word_starts.reserve(src_word_starts.size()); 223 word_starts.push_back(src_word_starts[i]); 226 dst->AddIntListAttribute(ui::AX_ATTR_WORD_STARTS, word_starts);
|