Home
last modified time | relevance | path

Searched refs:setEditableSelectionOffsets (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebViewTest.cpp524 webView->setEditableSelectionOffsets(5, 13); in TEST_F()
537 webView->setEditableSelectionOffsets(8, 19); in TEST_F()
598 webView->setEditableSelectionOffsets(4, 4); in TEST_F()
630 webView->setEditableSelectionOffsets(10, 10); in TEST_F()
648 webView->setEditableSelectionOffsets(4, 10); in TEST_F()
674 webView->setEditableSelectionOffsets(27, 27); in TEST_F()
680 webView->setEditableSelectionOffsets(31, 31); in TEST_F()
722 webView->setEditableSelectionOffsets(6, 6); in TEST_F()
730 webView->setEditableSelectionOffsets(8, 8); in TEST_F()
738 webView->setEditableSelectionOffsets(11, 11); in TEST_F()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/editing/
DInputMethodController.h82 bool setEditableSelectionOffsets(const PlainTextRange&);
DInputMethodController.cpp381 bool InputMethodController::setEditableSelectionOffsets(const PlainTextRange& selectionOffsets) in setEditableSelectionOffsets() function in WebCore::InputMethodController
/external/chromium_org/third_party/WebKit/public/web/
DWebView.h490 virtual bool setEditableSelectionOffsets(int start, int end) = 0;
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DImeAdapter.java392 boolean setEditableSelectionOffsets(int start, int end) { in setEditableSelectionOffsets() method in ImeAdapter
DAdapterInputConnection.java388 return mImeAdapter.setEditableSelectionOffsets(start, end); in setSelection()
/external/chromium_org/third_party/WebKit/Source/web/
DWebViewImpl.h158 virtual bool setEditableSelectionOffsets(int start, int end);
DWebViewImpl.cpp2391 bool WebViewImpl::setEditableSelectionOffsets(int start, int end) in setEditableSelectionOffsets() function in blink::WebViewImpl
2396 return focused->inputMethodController().setEditableSelectionOffsets(PlainTextRange(start, end)); in setEditableSelectionOffsets()
/external/chromium_org/content/renderer/
Drender_view_impl.cc1781 webview()->setEditableSelectionOffsets(start, end); in OnSetEditableSelectionOffsets()