OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:word_list_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/history/
url_index_private_data.cc
187
if (
word_list_
.empty() || lower_words.empty()) {
482
data_copy->
word_list_
=
word_list_
;
504
word_list_
.clear();
628
if (
word_list_
[*word_set_iter].find(term) == base::string16::npos)
787
WordID word_id =
word_list_
.size();
789
word_list_
.push_back(term);
792
word_list_
[word_id] = term;
[
all
...]
in_memory_url_index_unittest.cc
298
EXPECT_FALSE(data.
word_list_
.empty());
311
EXPECT_TRUE(data.
word_list_
.empty());
342
EXPECT_EQ(expected.
word_list_
.size(), actual.
word_list_
.size());
352
size_t count = expected.
word_list_
.size();
354
EXPECT_EQ(expected.
word_list_
[i], actual.
word_list_
[i]);
[
all
...]
url_index_private_data.h
345
String16Vector
word_list_
;
member in class:history::URLIndexPrivateData
347
// A list of available words slots in |
word_list_
|. An available word slot
348
// is the index of a unused word in
word_list_
vector, also referred to as
351
// words are added to the end of the
word_list_
. When URL visits are
358
// WordID) in the |
word_list_
|.
/external/chromium/chrome/browser/history/
in_memory_url_index.cc
224
word_list_
.clear();
549
word_list_
.push_back(uni_word);
550
WordID word_id =
word_list_
.size() - 1;
[
all
...]
in_memory_url_index_unittest.cc
544
InMemoryURLIndex::String16Vector word_list(url_index.
word_list_
);
554
EXPECT_FALSE(url_index.
word_list_
.empty());
563
EXPECT_TRUE(url_index.
word_list_
.empty());
574
EXPECT_EQ(word_list.size(), url_index.
word_list_
.size());
582
EXPECT_EQ(word_list[i], url_index.
word_list_
[i]);
in_memory_url_index.h
395
String16Vector
word_list_
;
member in class:history::InMemoryURLIndex
Completed in 41 milliseconds