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