Searched refs:executeCommand (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_command_executor.h12 - (void)executeCommand:(int)command;
H A Dbrowser_window_controller.h222 - (void)executeCommand:(int)command;
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteTransaction.cpp60 m_inProgress = m_db.executeCommand("BEGIN");
62 m_inProgress = m_db.executeCommand("BEGIN IMMEDIATE");
71 m_inProgress = !m_db.executeCommand("COMMIT");
78 // We do not use the 'm_inProgress = m_db.executeCommand("ROLLBACK")' construct here,
80 // m_db.executeCommand("ROLLBACK") can sometimes harmlessly fail, thus returning
84 m_db.executeCommand("ROLLBACK");
H A DSQLiteDatabase.cpp86 if (!SQLiteStatement(*this, "PRAGMA temp_store = MEMORY;").executeCommand())
133 executeCommand("PRAGMA fullfsync = 1;");
135 executeCommand("PRAGMA fullfsync = 0;");
229 executeCommand(makeString("PRAGMA synchronous = ", String::number(sync)));
248 bool SQLiteDatabase::executeCommand(const String& sql) function in class:WebCore::SQLiteDatabase
250 return SQLiteStatement(*this, sql).executeCommand();
282 if (!executeCommand("DROP TABLE " + *table))
289 if (!executeCommand("VACUUM;"))
298 if (!executeCommand("PRAGMA incremental_vacuum"))
463 return executeCommand("PRAGM
[all...]
H A DSQLiteDatabase.h66 bool executeCommand(const String&);
H A DSQLiteStatement.h63 bool executeCommand();
H A DSQLiteStatement.cpp138 bool SQLiteStatement::executeCommand() function in class:WebCore::SQLiteStatement
/external/webkit/Source/WebCore/page/
H A DGeolocationPositionCache.cpp150 if (!database.executeCommand("CREATE TABLE IF NOT EXISTS CachedPosition ("
216 if (!database.executeCommand("DELETE FROM CachedPosition"))
253 if (!statement.executeCommand())
/external/chromium/webkit/glue/
H A Dwebframe_unittest.cc89 frame->executeCommand(WebString::fromUTF8("SelectAll"));
91 frame->executeCommand(WebString::fromUTF8("Unselect"));
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationPermissions.cpp337 if (!database.executeCommand("CREATE TABLE IF NOT EXISTS Permissions (origin TEXT UNIQUE NOT NULL, allow INTEGER NOT NULL)")) {
371 if (!database.executeCommand("DELETE FROM Permissions")) {
383 statement.executeCommand();
/external/replicaisland/src/com/replica/replicaisland/
H A DNPCComponent.java170 accepted = executeCommand(hotSpot, parentObject, timeDelta);
173 accepted = executeCommand(hotSpot, parentObject, timeDelta);
185 accepted = executeCommand(nextCommand(), parentObject, timeDelta);
212 private boolean executeCommand(int hotSpot, GameObject parentObject, float timeDelta) { method in class:NPCComponent
/external/llvm/utils/lit/lit/
H A DTestFormats.py103 out, err, exitCode = TestRunner.executeCommand(
212 out, err, exitCode = TestRunner.executeCommand(cmd)
H A DTestRunner.py26 def executeCommand(command, cwd=None, env=None): function
300 return executeCommand(command, cwd=cwd, env=test.config.environment)
/external/webkit/Source/WebKit/chromium/public/
H A DWebFrame.h404 virtual bool executeCommand(const WebString&) = 0;
405 virtual bool executeCommand(const WebString&, const WebString& value) = 0;
/external/webkit/Source/WebCore/storage/
H A DDatabaseTracker.cpp126 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, quota INTEGER NOT NULL ON CONFLICT FAIL);")) {
132 if (!m_database.executeCommand("CREATE TABLE Databases (guid INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT, name TEXT, displayName TEXT, estimatedSize INTEGER, path TEXT);")) {
686 error = !statement.executeCommand();
724 if (!statement.executeCommand()) {
787 if (!statement.executeCommand()) {
800 if (!originStatement.executeCommand()) {
980 if (!statement.executeCommand()) {
H A DStorageTracker.cpp124 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, path TEXT);"))
392 if (!deleteStatement.executeCommand()) {
479 if (!deleteStatement.executeCommand()) {
H A DAbstractDatabase.cpp272 if (!m_sqliteDatabase.executeCommand("CREATE TABLE " + databaseInfoTableName() + " (key TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT REPLACE,value TEXT NOT NULL ON CONFLICT FAIL);")) {
H A DStorageAreaSync.cpp257 if (!m_database.executeCommand("CREATE TABLE IF NOT EXISTS ItemTable (key TEXT UNIQUE ON CONFLICT REPLACE, value TEXT NOT NULL ON CONFLICT FAIL)")) {
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.h155 virtual bool executeCommand(const WebString&);
156 virtual bool executeCommand(const WebString&, const WebString& value);
H A DWebFrameImpl.cpp1168 bool WebFrameImpl::executeCommand(const WebString& name) function in class:WebKit::WebFrameImpl
1228 bool WebFrameImpl::executeCommand(const WebString& name, const WebString& value) function in class:WebKit::WebFrameImpl
1518 executeCommand(WebString::fromUTF8("Unselect"));
H A DWebViewImpl.cpp789 focusedFrame()->executeCommand(WebString::fromUTF8("SelectAll"));
793 focusedFrame()->executeCommand(WebString::fromUTF8("Copy"));
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabase.cpp1075 if (!db.executeCommand("CREATE TABLE PageURL (url TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT REPLACE,iconID INTEGER NOT NULL ON CONFLICT FAIL);")) {
1080 if (!db.executeCommand("CREATE INDEX PageURLIndex ON PageURL (url);")) {
1085 if (!db.executeCommand("CREATE TABLE IconInfo (iconID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE ON CONFLICT REPLACE, url TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT FAIL, stamp INTEGER);")) {
1090 if (!db.executeCommand("CREATE INDEX IconInfoIndex ON IconInfo (url, iconID);")) {
1095 if (!db.executeCommand("CREATE TABLE IconData (iconID INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE ON CONFLICT REPLACE, data BLOB);")) {
1100 if (!db.executeCommand("CREATE INDEX IconDataIndex ON IconData (iconID);")) {
1105 if (!db.executeCommand("CREATE TABLE IconDatabaseInfo (key TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT REPLACE,value TEXT NOT NULL ON CONFLICT FAIL);")) {
1110 if (!db.executeCommand(String("INSERT INTO IconDatabaseInfo VALUES ('Version', ") + String::number(currentDatabaseVersion) + ");")) {
1162 if (!SQLiteStatement(m_syncDB, "PRAGMA cache_size = 200;").executeCommand())
1699 if (!m_syncDB.executeCommand("DELET
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTextInputController.cpp97 mainFrame->executeCommand(WebString::fromUTF8(arguments[0].toString()));
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCacheStorage.cpp555 bool result = m_database.executeCommand(sql);
661 bool result = statement.executeCommand();
818 if (!dataStatement.executeCommand()) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jsch.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 327 milliseconds

12