Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/editing/
DInputMethodControllerTest.cpp57 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
63 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
69 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
75 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
81 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
87 controller().setEditableSelectionOffsets(PlainTextRange(4, 4)); in TEST_F()
DInputMethodController.h83 bool setEditableSelectionOffsets(const PlainTextRange&);
DInputMethodController.cpp393 bool InputMethodController::setEditableSelectionOffsets(const PlainTextRange& selectionOffsets) in setEditableSelectionOffsets() function in blink::InputMethodController
/external/chromium_org/third_party/WebKit/Source/web/tests/
DWebViewTest.cpp590 frame->setEditableSelectionOffsets(5, 13); in TEST_F()
603 frame->setEditableSelectionOffsets(8, 19); in TEST_F()
664 frame->setEditableSelectionOffsets(4, 4); in TEST_F()
697 frame->setEditableSelectionOffsets(10, 10); in TEST_F()
716 frame->setEditableSelectionOffsets(4, 10); in TEST_F()
743 frame->setEditableSelectionOffsets(27, 27); in TEST_F()
749 frame->setEditableSelectionOffsets(31, 31); in TEST_F()
792 frame->setEditableSelectionOffsets(6, 6); in TEST_F()
800 frame->setEditableSelectionOffsets(8, 8); in TEST_F()
808 frame->setEditableSelectionOffsets(11, 11); in TEST_F()
[all …]
/external/chromium_org/third_party/WebKit/public/web/
DWebFrame.h467 virtual bool setEditableSelectionOffsets(int start, int end) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DWebRemoteFrameImpl.h125 virtual bool setEditableSelectionOffsets(int start, int end) OVERRIDE;
DWebLocalFrameImpl.h174 virtual bool setEditableSelectionOffsets(int start, int end) OVERRIDE;
DWebRemoteFrameImpl.cpp625 bool WebRemoteFrameImpl::setEditableSelectionOffsets(int start, int end) in setEditableSelectionOffsets() function in blink::WebRemoteFrameImpl
DWebLocalFrameImpl.cpp1189 bool WebLocalFrameImpl::setEditableSelectionOffsets(int start, int end) in setEditableSelectionOffsets() function in blink::WebLocalFrameImpl
1191 return frame()->inputMethodController().setEditableSelectionOffsets(PlainTextRange(start, end)); in setEditableSelectionOffsets()
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DAdapterInputConnection.java440 return mImeAdapter.setEditableSelectionOffsets(start, end); in setSelection()
DImeAdapter.java556 boolean setEditableSelectionOffsets(int start, int end) { in setEditableSelectionOffsets() method in ImeAdapter
/external/chromium_org/content/renderer/
Drender_frame_impl.cc1287 frame_->setEditableSelectionOffsets(start, end); in OnSetEditableSelectionOffsets()