Home
last modified time | relevance | path

Searched refs:extendSelectionAndDelete (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DInputMethodControllerTest.cpp59 controller().extendSelectionAndDelete(0, 0); in TEST_F()
65 controller().extendSelectionAndDelete(1, 0); in TEST_F()
71 controller().extendSelectionAndDelete(1, 0); in TEST_F()
77 controller().extendSelectionAndDelete(1, 0); in TEST_F()
83 controller().extendSelectionAndDelete(1, 0); in TEST_F()
89 controller().extendSelectionAndDelete(0, 1); in TEST_F()
DInputMethodController.h84 void extendSelectionAndDelete(int before, int after);
DInputMethodController.cpp400 void InputMethodController::extendSelectionAndDelete(int before, int after) in extendSelectionAndDelete() function in blink::InputMethodController
/external/chromium_org/third_party/WebKit/public/web/
DWebPlugin.h151 virtual void extendSelectionAndDelete(int before, int after) { } in extendSelectionAndDelete() function
DWebFrame.h469 virtual void extendSelectionAndDelete(int before, int after) = 0;
/external/chromium_org/content/renderer/browser_plugin/
Dbrowser_plugin.h129 virtual void extendSelectionAndDelete(int before, int after) OVERRIDE; in NON_EXPORTED_BASE()
Dbrowser_plugin.cc624 void BrowserPlugin::extendSelectionAndDelete(int before, int after) { in extendSelectionAndDelete() function in content::BrowserPlugin
/external/chromium_org/third_party/WebKit/Source/web/
DWebRemoteFrameImpl.h127 virtual void extendSelectionAndDelete(int before, int after) OVERRIDE;
DWebLocalFrameImpl.h176 virtual void extendSelectionAndDelete(int before, int after) OVERRIDE;
DWebLocalFrameImpl.cpp1210 void WebLocalFrameImpl::extendSelectionAndDelete(int before, int after) in extendSelectionAndDelete() function in blink::WebLocalFrameImpl
1213 plugin->extendSelectionAndDelete(before, after); in extendSelectionAndDelete()
1216 frame()->inputMethodController().extendSelectionAndDelete(before, after); in extendSelectionAndDelete()
DWebRemoteFrameImpl.cpp637 void WebRemoteFrameImpl::extendSelectionAndDelete(int before, int after) in extendSelectionAndDelete() function in blink::WebRemoteFrameImpl
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebViewTest.cpp698 frame->extendSelectionAndDelete(5, 8); in TEST_F()
703 frame->extendSelectionAndDelete(10, 0); in TEST_F()
/external/chromium_org/tools/valgrind/drmemory/
Dsuppressions_full.txt1827 blink_web.dll!blink::InputMethodController::extendSelectionAndDelete
1828 blink_web.dll!blink::WebLocalFrameImpl::extendSelectionAndDelete
/external/chromium_org/content/renderer/
Drender_frame_impl.cc1303 frame_->extendSelectionAndDelete(before, after); in OnExtendSelectionAndDelete()