Home
last modified time | relevance | path

Searched refs:executeCommand (Results 1 – 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLiteTransaction.cpp58 m_inProgress = m_db.executeCommand("BEGIN"); in begin()
60 m_inProgress = m_db.executeCommand("BEGIN IMMEDIATE"); in begin()
69 m_inProgress = !m_db.executeCommand("COMMIT"); in commit()
82 m_db.executeCommand("ROLLBACK"); in rollback()
DSQLiteDatabase.cpp93 if (!SQLiteStatement(*this, "PRAGMA temp_store = MEMORY;").executeCommand()) in open()
219 bool SQLiteDatabase::executeCommand(const String& sql) in executeCommand() function in WebCore::SQLiteDatabase
221 return SQLiteStatement(*this, sql).executeCommand(); in executeCommand()
238 if (!executeCommand("VACUUM;")) in runVacuumCommand()
248 if (!executeCommand("PRAGMA incremental_vacuum")) in runIncrementalVacuumCommand()
413 return executeCommand("PRAGMA auto_vacuum = 2"); in turnOnIncrementalAutoVacuum()
416 if (!executeCommand("PRAGMA auto_vacuum = 2")) in turnOnIncrementalAutoVacuum()
DSQLiteStatement.h58 bool executeCommand();
DSQLiteDatabase.h71 bool executeCommand(const String&);
DSQLiteStatement.cpp127 bool SQLiteStatement::executeCommand() in executeCommand() function in WebCore::SQLiteStatement
/external/chromium_org/chrome/browser/ui/cocoa/
Dchrome_event_processing_window_unittest.mm69 // forwards it to [delegate executeCommand:]. Assume that other
76 [[delegate expect] executeCommand:IDC_SELECT_TAB_0];
87 // -executeCommand:.
Dbrowser_command_executor.h11 - (void)executeCommand:(int)command;
Dchrome_event_processing_window.mm41 DCHECK([executor respondsToSelector:@selector(executeCommand:)]);
42 [executor executeCommand:cmdNum];
Dbrowser_window_controller.h307 - (void)executeCommand:(int)command;
Dweb_dialog_window_controller.mm95 - (void)executeCommand:(int)command;
291 - (void)executeCommand:(int)command {}
/external/replicaisland/src/com/replica/replicaisland/
DNPCComponent.java170 accepted = executeCommand(hotSpot, parentObject, timeDelta); in update()
173 accepted = executeCommand(hotSpot, parentObject, timeDelta); in update()
185 accepted = executeCommand(nextCommand(), parentObject, timeDelta); in update()
212 private boolean executeCommand(int hotSpot, GameObject parentObject, float timeDelta) { in executeCommand() method in NPCComponent
/external/chromium_org/chrome/renderer/spellchecker/
Dspellcheck_provider.cc261 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnAdvanceToNextMisspelling()
294 render_view()->GetWebView()->focusedFrame()->executeCommand( in OnToggleSpellPanel()
/external/chromium_org/third_party/WebKit/Tools/Scripts/
Ddisplay-profiler-output595 def executeCommand(*commandArray) method
932 executeCommand("full")
936 executeCommand(*commandLine.split)
/external/chromium_org/third_party/WebKit/Source/web/
DWebRemoteFrameImpl.h108 virtual bool executeCommand(const WebString&, const WebNode& = WebNode()) OVERRIDE;
109 …virtual bool executeCommand(const WebString&, const WebString& value, const WebNode& = WebNode()) …
DWebRemoteFrameImpl.cpp489 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebNode&) in executeCommand() function in blink::WebRemoteFrameImpl
495 bool WebRemoteFrameImpl::executeCommand(const WebString&, const WebString& value, const WebNode&) in executeCommand() function in blink::WebRemoteFrameImpl
DWebLocalFrameImpl.h161 virtual bool executeCommand(const WebString&, const WebNode& = WebNode()) OVERRIDE;
162 …virtual bool executeCommand(const WebString&, const WebString& value, const WebNode& = WebNode()) …
/external/chromium_org/third_party/WebKit/public/web/
DWebFrame.h433 virtual bool executeCommand(const WebString&, const WebNode& = WebNode()) = 0;
434 …virtual bool executeCommand(const WebString&, const WebString& value, const WebNode& = WebNode()) …
/external/llvm/utils/lit/lit/formats/
Dgoogletest.py108 out, err, exitCode = lit.util.executeCommand(
Dbase.py104 out, err, exitCode = lit.util.executeCommand(cmd)
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebPluginContainerTest.cpp175 EXPECT_TRUE(webView->mainFrame()->executeCommand("Copy", pluginContainerOneElement)); in TEST_F()
/external/llvm/utils/lit/lit/
Dutil.py146 def executeCommand(command, cwd=None, env=None): function
DTestRunner.py299 return lit.util.executeCommand(command, cwd=cwd,
/external/chromium_org/content/renderer/
Drender_frame_impl.cc1030 frame_->executeCommand(WebString::fromUTF8("Undo"), GetFocusedElement()); in OnUndo()
1034 frame_->executeCommand(WebString::fromUTF8("Redo"), GetFocusedElement()); in OnRedo()
1039 frame_->executeCommand(WebString::fromUTF8("Cut"), GetFocusedElement()); in OnCut()
1046 frame_->executeCommand(WebString::fromUTF8("Copy"), current_node); in OnCopy()
1051 frame_->executeCommand(WebString::fromUTF8("Paste"), GetFocusedElement()); in OnPaste()
1056 frame_->executeCommand( in OnPasteAndMatchStyle()
1073 frame_->executeCommand(WebString::fromUTF8("Delete"), GetFocusedElement()); in OnDelete()
1078 frame_->executeCommand(WebString::fromUTF8("SelectAll"), GetFocusedElement()); in OnSelectAll()
1092 frame_->executeCommand(WebString::fromUTF8("Unselect"), GetFocusedElement()); in OnUnselect()
/external/chromium_org/content/shell/renderer/test_runner/
Dtext_input_controller.cc171 view_->mainFrame()->executeCommand(blink::WebString::fromUTF8(text)); in DoCommand()
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseBackendBase.cpp370 …if (!m_sqliteDatabase.executeCommand("CREATE TABLE " + tableName + " (key TEXT NOT NULL ON CONFLIC… in performOpenAndVerify()

12