| /external/chromium/chrome/browser/ui/cocoa/ |
| browser_command_executor.h | 12 - (void)executeCommand:(int)command;
|
| browser_window_controller.h | 222 - (void)executeCommand:(int)command;
|
| /external/webkit/Source/WebCore/platform/sql/ |
| SQLiteTransaction.cpp | 60 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");
|
| SQLiteDatabase.cpp | 86 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) 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("PRAGMA auto_vacuum = 2") [all...] |
| SQLiteDatabase.h | 66 bool executeCommand(const String&);
|
| SQLiteStatement.h | 63 bool executeCommand();
|
| /frameworks/base/core/java/android/view/ |
| IWindow.aidl | 46 void executeCommand(String command, String parameters, in ParcelFileDescriptor descriptor);
|
| /external/webkit/Source/WebCore/page/ |
| GeolocationPositionCache.cpp | 150 if (!database.executeCommand("CREATE TABLE IF NOT EXISTS CachedPosition (" 216 if (!database.executeCommand("DELETE FROM CachedPosition")) 253 if (!statement.executeCommand())
|
| /external/chromium/webkit/glue/ |
| webframe_unittest.cc | 89 frame->executeCommand(WebString::fromUTF8("SelectAll")); 91 frame->executeCommand(WebString::fromUTF8("Unselect"));
|
| /frameworks/base/core/java/com/android/internal/view/ |
| BaseIWindow.java | 55 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) {
|
| /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
| BridgeWindow.java | 56 public void executeCommand(String arg0, String arg1, ParcelFileDescriptor arg2)
|
| /external/webkit/Source/WebKit/android/WebCoreSupport/ |
| GeolocationPermissions.cpp | 338 if (!database.executeCommand("CREATE TABLE IF NOT EXISTS Permissions (origin TEXT UNIQUE NOT NULL, allow INTEGER NOT NULL)")) { 372 if (!database.executeCommand("DELETE FROM Permissions")) { 384 statement.executeCommand();
|
| /frameworks/base/include/binder/ |
| IPCThreadState.h | 99 status_t executeCommand(int32_t command);
|
| /external/webkit/Source/WebKit/chromium/public/ |
| WebFrame.h | 404 virtual bool executeCommand(const WebString&) = 0; 405 virtual bool executeCommand(const WebString&, const WebString& value) = 0;
|
| /external/webkit/Source/WebKit/chromium/src/ |
| WebFrameImpl.h | 155 virtual bool executeCommand(const WebString&); 156 virtual bool executeCommand(const WebString&, const WebString& value);
|
| /external/webkit/Source/WebCore/storage/ |
| DatabaseTracker.cpp | 126 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()) { [all...] |
| StorageTracker.cpp | 124 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, path TEXT);")) 392 if (!deleteStatement.executeCommand()) { 479 if (!deleteStatement.executeCommand()) {
|
| AbstractDatabase.cpp | 272 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);")) {
|
| StorageAreaSync.cpp | 257 if (!m_database.executeCommand("CREATE TABLE IF NOT EXISTS ItemTable (key TEXT UNIQUE ON CONFLICT REPLACE, value TEXT NOT NULL ON CONFLICT FAIL)")) {
|
| /external/llvm/utils/lit/lit/ |
| TestFormats.py | 92 out, err, exitCode = TestRunner.executeCommand( 209 out, err, exitCode = TestRunner.executeCommand(cmd)
|
| TestRunner.py | 26 def executeCommand(command, cwd=None, env=None): 317 out,err,exitCode = executeCommand(command, cwd=cwd, 367 return executeCommand(command, cwd=cwd, env=test.config.environment)
|
| /sdk/ddms/app/src/com/android/ddms/ |
| DeviceCommandDialog.java | 120 executeCommand(shell, currentDevice); 322 private void executeCommand(Shell shell, IDevice device) {
|
| /external/webkit/Source/WebCore/loader/icon/ |
| IconDatabase.cpp | [all...] |
| /external/webkit/Tools/DumpRenderTree/chromium/ |
| TextInputController.cpp | 97 mainFrame->executeCommand(WebString::fromUTF8(arguments[0].toString()));
|
| /frameworks/base/libs/binder/ |
| IPCThreadState.cpp | 468 result = executeCommand(cmd); 737 err = executeCommand(cmd); 891 status_t IPCThreadState::executeCommand(int32_t cmd) [all...] |