HomeSort by relevance Sort by last modified time
    Searched refs:DoesTableExist (Results 1 - 22 of 22) sorted by null

  /external/chromium/app/sql/
connection_unittest.cc 75 // Test DoesTableExist.
76 EXPECT_FALSE(db().DoesTableExist("foo"));
78 EXPECT_TRUE(db().DoesTableExist("foo"));
81 EXPECT_FALSE(db().DoesTableExist("FOO"));
meta_table.cc 25 bool MetaTable::DoesTableExist(sql::Connection* db) {
27 return db->DoesTableExist("meta");
33 if (!DoesTableExist(db)) {
meta_table.h 24 static bool DoesTableExist(Connection* db);
connection.h 248 bool DoesTableExist(const char* table_name) const;
connection.cc 131 if (!DoesTableExist("meta"))
259 bool Connection::DoesTableExist(const char* table_name) const {
  /external/chromium/chrome/browser/webdata/
web_apps_table.cc 23 if (!db_->DoesTableExist("web_app_icons")) {
37 if (!db_->DoesTableExist("web_apps")) {
token_service_table.cc 15 if (!db_->DoesTableExist("token_service")) {
web_database_migration_unittest.cc 305 EXPECT_TRUE(connection.DoesTableExist("meta"));
306 EXPECT_TRUE(connection.DoesTableExist("keywords"));
307 EXPECT_TRUE(connection.DoesTableExist("logins"));
308 EXPECT_TRUE(connection.DoesTableExist("web_app_icons"));
309 EXPECT_TRUE(connection.DoesTableExist("web_apps"));
310 EXPECT_TRUE(connection.DoesTableExist("autofill"));
311 EXPECT_TRUE(connection.DoesTableExist("autofill_dates"));
312 EXPECT_TRUE(connection.DoesTableExist("autofill_profiles"));
313 EXPECT_TRUE(connection.DoesTableExist("credit_cards"));
314 EXPECT_TRUE(connection.DoesTableExist("token_service"))
    [all...]
logins_table.cc 54 if (!db_->DoesTableExist("logins")) {
83 if (!db_->DoesTableExist("ie7_logins")) {
autofill_table.cc     [all...]
keyword_table.cc 63 if (!db_->DoesTableExist("keywords")) {
  /external/chromium/chrome/browser/history/
visitsegment_database.cc 45 if (!GetDB().DoesTableExist("segments")) {
66 if (!GetDB().DoesTableExist("segment_usage")) {
94 if (!GetDB().DoesTableExist("presentation")) {
text_database.cc 178 if (!db_.DoesTableExist("pages")) {
190 if (!db_.DoesTableExist("info")) {
download_database.cc 64 if (!GetDB().DoesTableExist("downloads")) {
top_sites_database.cc 35 bool does_meta_exist = sql::MetaTable::DoesTableExist(db_.get());
68 if (!db_->DoesTableExist("thumbnails")) {
thumbnail_database.cc 148 if (!db_.DoesTableExist("thumbnails")) {
198 if (!db->DoesTableExist(name)) {
701 if (!db->DoesTableExist(name)) {
url_database.cc 380 if (!GetDB().DoesTableExist("keyword_search_terms")) {
534 if (GetDB().DoesTableExist(name))
visit_database.cc 32 if (!GetDB().DoesTableExist("visits")) {
59 if (!GetDB().DoesTableExist("visit_source")) {
starred_url_database.cc 92 if (!GetDB().DoesTableExist("starred"))
  /external/chromium/chrome/browser/sync/syncable/
directory_backing_store_unittest.cc     [all...]
  /external/chromium/chrome/browser/password_manager/
login_database.cc 106 if (!db_.DoesTableExist("logins")) {
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 173 if (!db->DoesTableExist("cookies")) {

Completed in 346 milliseconds