OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:word_map_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/history/
url_index_private_data.cc
426
restored_data->
word_map_
.size());
460
rebuilt_data->
word_map_
.size());
484
data_copy->
word_map_
=
word_map_
;
506
word_map_
.clear();
778
WordMap::iterator word_pos =
word_map_
.find(term);
779
if (word_pos !=
word_map_
.end())
795
word_map_
[term] = word_id;
[
all
...]
in_memory_url_index_unittest.cc
302
EXPECT_FALSE(data.
word_map_
.empty());
313
EXPECT_TRUE(data.
word_map_
.empty());
343
EXPECT_EQ(expected.
word_map_
.size(), actual.
word_map_
.size());
441
EXPECT_EQ(17U, private_data.
word_map_
.size());
[
all
...]
url_index_private_data.h
343
// ID of the word in the
word_map_
. It reduces the memory overhead by
359
WordMap
word_map_
;
member in class:history::URLIndexPrivateData
/external/chromium/chrome/browser/history/
in_memory_url_index.cc
225
word_map_
.clear();
264
UMA_HISTOGRAM_COUNTS_10000("History.InMemoryURLWords",
word_map_
.size());
531
WordMap::iterator word_pos =
word_map_
.find(uni_word);
532
if (word_pos !=
word_map_
.end())
551
word_map_
[uni_word] = word_id;
[
all
...]
in_memory_url_index_unittest.cc
182
EXPECT_EQ(17U, url_index_->
word_map_
.size());
545
InMemoryURLIndex::WordMap word_map(url_index.
word_map_
);
555
EXPECT_FALSE(url_index.
word_map_
.empty());
564
EXPECT_TRUE(url_index.
word_map_
.empty());
575
EXPECT_EQ(word_map.size(), url_index.
word_map_
.size());
in_memory_url_index.h
388
// ID of the word in the
word_map_
. It reduces the memory overhead by
398
WordMap
word_map_
;
member in class:history::InMemoryURLIndex
Completed in 49 milliseconds