Searched defs:db (Results 1 - 25 of 151) sorted by relevance

1234567

/external/chromium/chrome/browser/
H A Dbrowsing_data_database_helper_unittest.cc20 const char db[] = "db1"; local
26 helper->AddDatabase(origin, db, "");
/external/clang/test/CodeGen/
H A D2008-07-30-redef-of-bitcasted-decl.c20 static void bar(void *db) { argument
/external/chromium/chrome/browser/history/
H A Dmultipart_uitest.cc43 sql::Connection db; local
47 ASSERT_TRUE(db.Open(history));
53 sql::Statement statement(db.GetUniqueStatement(query.c_str()));
58 db.Close();
H A Din_memory_history_backend.h47 // as the directory where the InMemoryURLIndex's cache is kept. |db| is
53 URLDatabase* db,
64 InMemoryDatabase* db() const { function in class:history::InMemoryHistoryBackend
H A Dhistory_database.h46 explicit TransactionScoper(HistoryDatabase* db) : db_(db) { argument
/external/chromium/chrome/browser/webdata/
H A Dkeyword_table.h53 KeywordTable(sql::Connection* db, sql::MetaTable* meta_table) argument
54 : WebDatabaseTable(db, meta_table) {}
H A Dautofill_table.h113 AutofillTable(sql::Connection* db, sql::MetaTable* meta_table) argument
114 : WebDatabaseTable(db, meta_table) {}
H A Dtoken_service_table.h13 TokenServiceTable(sql::Connection* db, sql::MetaTable* meta_table) argument
14 : WebDatabaseTable(db, meta_table) {}
H A Dweb_apps_table.h33 WebAppsTable(sql::Connection* db, sql::MetaTable* meta_table) argument
34 : WebDatabaseTable(db, meta_table) {}
H A Dlogins_table.h50 LoginsTable(sql::Connection* db, sql::MetaTable* meta_table) argument
51 : WebDatabaseTable(db, meta_table) {}
H A Dweb_database_table.h17 explicit WebDatabaseTable(sql::Connection* db, sql::MetaTable* meta_table) argument
18 : db_(db), meta_table_(meta_table) {}
H A Dtoken_service_table_unittest.cc25 ".db";
41 WebDatabase db; local
42 ASSERT_EQ(sql::INIT_OK, db.Init(file_));
50 EXPECT_TRUE(db.GetTokenServiceTable()->GetAllTokens(&out_map));
54 EXPECT_TRUE(db.GetTokenServiceTable()->SetTokenForService(service,
56 EXPECT_TRUE(db.GetTokenServiceTable()->SetTokenForService(service2, "steak"));
57 EXPECT_TRUE(db.GetTokenServiceTable()->GetAllTokens(&out_map));
63 EXPECT_TRUE(db.GetTokenServiceTable()->RemoveAllTokens());
64 EXPECT_TRUE(db.GetTokenServiceTable()->GetAllTokens(&out_map));
68 EXPECT_TRUE(db
74 WebDatabase db; local
[all...]
H A Dweb_apps_table_unittest.cc27 ".db";
44 WebDatabase db; local
46 ASSERT_EQ(sql::INIT_OK, db.Init(file_));
50 EXPECT_FALSE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
53 EXPECT_TRUE(db.GetWebAppsTable()->SetWebAppHasAllImages(url, true));
54 EXPECT_TRUE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
57 EXPECT_TRUE(db.GetWebAppsTable()->RemoveWebApp(url));
58 EXPECT_FALSE(db.GetWebAppsTable()->GetWebAppHasAllImages(url));
62 WebDatabase db; local
64 ASSERT_EQ(sql::INIT_OK, db
[all...]
/external/webkit/Tools/QueueStatusServer/handlers/
H A Dupdatebase.py30 from google.appengine.ext import webapp, db namespace
H A Dnextpatch.py31 from google.appengine.ext import db namespace
46 patch_id = db.run_in_transaction(self._assign_patch, queue.active_work_items().key(), queue.work_items().item_ids)
55 active_work_items = db.get(key)
H A Dreleasepatch.py29 from google.appengine.ext import webapp, db namespace
H A Dupdatesvnrevision.py29 from google.appengine.ext import webapp, db namespace
/external/webkit/Tools/QueueStatusServer/model/
H A Dsvnrevision.py29 from google.appengine.ext import db namespace
32 class SVNRevision(db.Model):
33 number = db.IntegerProperty()
34 broken_bots = db.StringListProperty(default=[])
35 date = db.DateTimeProperty(auto_now_add=True)
/external/chromium/app/sql/
H A Dconnection_unittest.cc18 ASSERT_TRUE(db_.Open(temp_dir_.path().AppendASCII("SQLConnectionTest.db")));
25 sql::Connection& db() { return db_; } function in class:SQLConnectionTest
34 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
35 EXPECT_EQ(SQLITE_OK, db().GetErrorCode());
38 ASSERT_FALSE(db().Execute("CREATE TAB foo (a, b"));
39 EXPECT_EQ(SQLITE_ERROR, db().GetErrorCode());
45 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
46 ASSERT_TRUE(db().Execute("INSERT INTO foo(a, b) VALUES (12, 13)"));
50 sql::Statement s(db().GetCachedStatement(id1, "SELECT a FROM foo"));
58 EXPECT_TRUE(db()
[all...]
H A Dtransaction_unittest.cc20 temp_dir_.path().AppendASCII("SQLTransactionTest.db")));
22 ASSERT_TRUE(db().Execute("CREATE TABLE foo (a, b)"));
29 sql::Connection& db() { return db_; } function in class:SQLTransactionTest
33 sql::Statement count(db().GetUniqueStatement("SELECT count(*) FROM foo"));
45 sql::Transaction t(&db());
50 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
63 sql::Transaction t(&db());
68 EXPECT_TRUE(db().Execute("INSERT INTO foo (a, b) VALUES (1, 2)"));
75 sql::Transaction t2(&db());
79 EXPECT_TRUE(db()
[all...]
/external/webkit/Tools/RebaselineQueueServer/model/
H A Dqueueentry.py29 from google.appengine.ext import db namespace
32 class QueueEntry(db.Model):
33 test = db.StringProperty()
34 builder = db.StringProperty()
/external/chromium/chrome/browser/ssl/
H A Dssl_add_cert_handler.cc40 net::CertDatabase db; local
41 cert_error = db.CheckUserCert(cert_);
68 net::CertDatabase db; local
69 int cert_error = db.AddUserCert(cert_);
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteTransaction.cpp35 SQLiteTransaction::SQLiteTransaction(SQLiteDatabase& db, bool readOnly) argument
36 : m_db(db)
/external/webkit/Source/WebCore/plugins/android/
H A DPluginDataAndroid.cpp38 PluginDatabase *db = PluginDatabase::installedPlugins(); local
39 const Vector<PluginPackage*> &plugins = db->plugins();
65 PluginDatabase *db = PluginDatabase::installedPlugins(); local
66 db->refresh();
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginDataGtk.cpp32 PluginDatabase *db = PluginDatabase::installedPlugins(); local
33 const Vector<PluginPackage*> &plugins = db->plugins();
61 PluginDatabase *db = PluginDatabase::installedPlugins(); local
62 db->refresh();

Completed in 3651 milliseconds

1234567