OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:history_info_map_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/history/
url_index_private_data.cc
215
item_factor_functor(
history_info_map_
);
294
HistoryInfoMap::iterator row_pos =
history_info_map_
.find(row_id);
295
if (row_pos ==
history_info_map_
.end()) {
343
HistoryInfoMap::iterator row_pos =
history_info_map_
.find(url_id);
344
if (row_pos !=
history_info_map_
.end()) {
384
// Find the matching entry in the
history_info_map_
.
386
history_info_map_
.begin(),
387
history_info_map_
.end(),
389
if (pos ==
history_info_map_
.end())
488
data_copy->
history_info_map_
= history_info_map_
[
all
...]
in_memory_url_index_unittest.cc
306
EXPECT_FALSE(data.
history_info_map_
.empty());
317
EXPECT_TRUE(data.
history_info_map_
.empty());
349
EXPECT_EQ(expected.
history_info_map_
.size(), actual.
history_info_map_
.size());
364
expected.
history_info_map_
.begin();
365
expected_info != expected.
history_info_map_
.end(); ++expected_info) {
367
actual.
history_info_map_
.find(expected_info->first);
371
ASSERT_TRUE(actual_info != actual.
history_info_map_
.end());
438
//
history_info_map_
should have the same number of items as were filtered.
439
EXPECT_EQ(1U, private_data.
history_info_map_
.size())
[
all
...]
url_index_private_data.h
231
const history::HistoryInfoMap&
history_info_map_
;
member in class:history::URLIndexPrivateData::HistoryItemFactorGreater
376
HistoryInfoMap
history_info_map_
;
member in class:history::URLIndexPrivateData
/external/chromium/chrome/browser/history/
in_memory_url_index.cc
179
history_info_map_
[history_id] = new_row;
229
history_info_map_
.clear();
303
HistoryInfoMap::iterator row_pos =
history_info_map_
.find(row_id);
304
if (row_pos ==
history_info_map_
.end()) {
321
history_info_map_
.erase(row_id);
332
//
history_info_map_
no longer references the row no erroneous results
334
history_info_map_
.erase(row_id);
[
all
...]
in_memory_url_index_unittest.cc
179
//
history_info_map_
should have the same number of items as were filtered.
180
EXPECT_EQ(1U, url_index_->
history_info_map_
.size());
266
EXPECT_EQ(25U, url_index_->
history_info_map_
.size());
550
url_index.
history_info_map_
);
558
EXPECT_FALSE(url_index.
history_info_map_
.empty());
567
EXPECT_TRUE(url_index.
history_info_map_
.empty());
578
EXPECT_EQ(history_info_map.size(), url_index.
history_info_map_
.size());
612
url_index.
history_info_map_
.find(expected->first);
613
ASSERT_FALSE(url_index.
history_info_map_
.end() == actual);
in_memory_url_index.h
402
HistoryInfoMap
history_info_map_
;
member in class:history::InMemoryURLIndex
Completed in 435 milliseconds