/external/chromium/chrome/browser/history/ |
D | history_backend_unittest.cc | 123 URLID id = backend_->db()->GetRowForURL(url, &row); in getTransition() 250 URLID row1_id = backend_->db_->GetRowForURL(row1.url(), NULL); in TEST_F() 251 URLID row2_id = backend_->db_->GetRowForURL(row2.url(), NULL); in TEST_F() 268 EXPECT_TRUE(mem_backend_->db_->GetRowForURL(row1.url(), NULL)); in TEST_F() 302 EXPECT_TRUE(backend_->db_->GetRowForURL(row1.url(), &outrow1)); in TEST_F() 310 EXPECT_FALSE(backend_->db_->GetRowForURL(row2.url(), &outrow2)); in TEST_F() 383 URLID row1_id = backend_->db_->GetRowForURL(row1.url(), NULL); in TEST_F() 384 URLID row2_id = backend_->db_->GetRowForURL(row2.url(), NULL); in TEST_F() 396 EXPECT_EQ(row2_id, backend_->db_->GetRowForURL(row2.url(), NULL)); in TEST_F() 415 EXPECT_FALSE(backend_->db_->GetRowForURL(row2.url(), &tmp_url_row)); in TEST_F() [all …]
|
D | in_memory_history_backend.cc | 131 URLID id = db_->GetRowForURL(i->url(), NULL); in OnTypedURLsModified() 158 URLID id = db_->GetRowForURL(*i, NULL); in OnURLsDeleted() 176 if (!db_->GetRowForURL(details.url, &url_row)) { in OnKeywordSearchTermUpdated() 193 URLID id = db_->GetRowForURL(url, NULL); in HasKeyword()
|
D | history_backend.cc | 174 bool GetRowForURL(const GURL& url, URLRow* row) { in GetRowForURL() function in history::HistoryBackend::URLQuerier 175 if (!main_db_->GetRowForURL(url, row)) { in GetRowForURL() 176 if (!archived_db_ || !archived_db_->GetRowForURL(url, row)) { in GetRowForURL() 329 URLID url_id = db_->GetRowForURL(url, NULL); in UpdateSegments() 669 URLID url_id = db_->GetRowForURL(url, &url_info); in AddPageVisit() 755 URLID url_id = url_database->GetRowForURL(i->url(), &existing_url); in AddPagesWithDetails() 841 URLID row_id = db_->GetRowForURL(redirects->at(i), &row); in SetPageTitle() 881 URLID url_id = db_->GetRowForURL(url, &url_info); in AddPageNoVisitForBookmark() 976 return db_->GetRowForURL(url, url_row) != 0; in GetURL() 990 if (db_->GetRowForURL(url, row)) { in QueryURL() [all …]
|
D | url_database_unittest.cc | 93 EXPECT_TRUE(GetRowForURL(url1, &info)); in TEST_F() 95 URLID id2 = GetRowForURL(url2, &info); in TEST_F() 109 EXPECT_TRUE(GetRowForURL(url2, &info2)); in TEST_F() 113 EXPECT_EQ(0, GetRowForURL(GURL("http://news.google.com/"), &info)); in TEST_F()
|
D | expire_history_backend_unittest.cc | 562 ASSERT_TRUE(main_db_->GetRowForURL(url, &url_row)); in TEST_F() 773 EXPECT_FALSE(archived_db_->GetRowForURL(url_row1.url(), NULL)); in TEST_F() 774 EXPECT_FALSE(archived_db_->GetRowForURL(url_row2.url(), NULL)); in TEST_F() 785 EXPECT_TRUE(archived_db_->GetRowForURL(url_row1.url(), &archived_row)); in TEST_F() 813 EXPECT_FALSE(archived_db_->GetRowForURL(temp_row.url(), NULL)); in TEST_F() 826 ASSERT_TRUE(archived_db_->GetRowForURL(temp_row.url(), &temp_row)); in TEST_F() 833 EXPECT_FALSE(archived_db_->GetRowForURL(temp_row.url(), NULL)); in TEST_F() 899 ASSERT_TRUE(archived_db_->GetRowForURL(url, &archived_row)); in TEST_F()
|
D | url_database.h | 66 URLID GetRowForURL(const GURL& url, URLRow* info);
|
D | expire_history_backend.cc | 193 if (!main_db_->GetRowForURL(url, &url_row)) in DeleteURL() 241 url_ids.insert(main_db_->GetRowForURL(*url, NULL)); in ExpireHistoryBetween() 437 if (archived_db_->GetRowForURL(url_row.url(), &archived_row)) { in ArchiveOneURL()
|
D | text_database_manager.cc | 198 if (!url_database_->GetRowForURL(url, &url_row)) in AddPageTitle() 245 if (!url_database_->GetRowForURL(url, &url_row)) in AddPageContents()
|
D | url_database.cc | 117 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) { in GetRowForURL() function in history::URLDatabase
|
D | starred_url_database.cc | 277 if (!GetRowForURL(entry->url, &url_row)) { in CreateStarredEntry()
|
/external/chromium/chrome/browser/bookmarks/ |
D | bookmark_index_unittest.cc | 266 url_db->GetRowForURL(data[0].url, &result1); in TEST_F() 270 url_db->GetRowForURL(data[1].url, &result2); in TEST_F() 274 url_db->GetRowForURL(data[2].url, &result3); in TEST_F() 278 url_db->GetRowForURL(data[3].url, &result4); in TEST_F()
|
D | bookmark_index.cc | 134 url_db->GetRowForURL((*i)->GetURL(), &url); in ExtractBookmarkNodePairs()
|
/external/chromium/chrome/browser/autocomplete/ |
D | history_url_provider.cc | 374 if (!db->GetRowForURL(match->destination_url, &info)) { in FixupExactSuggestion() 379 if (!db->GetRowForURL(destination_url, NULL)) in FixupExactSuggestion() 533 db->GetRowForURL(search_base, &info); in PromoteOrCreateShorterSuggestion()
|
D | extension_app_provider.cc | 165 url_db->GetRowForURL(url, &info); in CalculateRelevance()
|