Searched defs:compositionEnd (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextInputInfo.h53 int compositionEnd; member in struct:blink::WebTextInputInfo
67 , compositionEnd(-1)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInputMethodController.h56 void setCompositionFromExistingText(const Vector<CompositionUnderline>&, unsigned compositionStart, unsigned compositionEnd);
75 unsigned compositionEnd() const { return m_compositionEnd; } function in class:blink::FINAL
H A DInputMethodController.cpp318 void InputMethodController::setCompositionFromExistingText(const Vector<CompositionUnderline>& underlines, unsigned compositionStart, unsigned compositionEnd) argument
333 RefPtrWillBeRawPtr<Range> range = PlainTextRange(compositionStart, compositionEnd).createRange(*editable);
352 setSelectionOffsets(PlainTextRange(compositionStart, compositionEnd));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DAdapterInputConnection.java141 * @param compositionEnd The character offset of the composition end, or -1 if there is no
147 int compositionEnd, boolean isNonImeChange) {
150 + compositionStart + " " + compositionEnd + "] [" + isNonImeChange + "]");
162 compositionEnd = Math.min(compositionEnd, text.length());
173 if (compositionStart == compositionEnd) {
176 super.setComposingRegion(compositionStart, compositionEnd);
198 int compositionEnd = getComposingSpanEnd(mEditable);
203 mLastUpdateCompositionEnd == compositionEnd) {
208 + compositionStart + " " + compositionEnd
146 updateState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd, boolean isNonImeChange) argument
522 public final int compositionEnd; field in class:AdapterInputConnection.ImeState
524 ImeState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DAdapterInputConnectionTest.java178 int compositionStart, int compositionEnd) {
184 assertEquals("Composition end did not match", compositionEnd, state.compositionEnd);
207 int compositionStart, int compositionEnd, ImeState actual) {
212 assertEquals("Composition end did not match", compositionEnd, actual.compositionEnd);
177 verifyUpdateSelectionCall(int index, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
206 assertCorrectState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd, ImeState actual) argument
H A DImeTest.java745 int compositionStart, int compositionEnd) throws InterruptedException {
753 text, selectionStart, selectionEnd, compositionStart, compositionEnd);
924 int compositionStart, int compositionEnd, boolean requiredAck) {
926 compositionStart, compositionEnd));
928 compositionEnd, requiredAck);
940 int compositionStart, int compositionEnd) {
945 mCompositionEnd = compositionEnd;
949 int compositionStart, int compositionEnd) {
954 assertEquals("Composition end did not match", compositionEnd, mCompositionEnd);
743 waitAndVerifyEditableCallback(final ArrayList<TestImeState> states, final int index, String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
923 updateState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd, boolean requiredAck) argument
939 TestImeState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
948 assertEqualState(String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRemoteFrameImpl.cpp631 bool WebRemoteFrameImpl::setCompositionFromExistingText(int compositionStart, int compositionEnd, const WebVector<WebCompositionUnderline>& underlines) argument
H A DWebLocalFrameImpl.cpp1194 bool WebLocalFrameImpl::setCompositionFromExistingText(int compositionStart, int compositionEnd, const WebVector<WebCompositionUnderline>& underlines) argument
1202 if (compositionStart == compositionEnd)
1205 inputMethodController.setCompositionFromExistingText(CompositionUnderlineVectorBuilder(underlines), compositionStart, compositionEnd);
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2173 int compositionStart, int compositionEnd, boolean showImeIfNeeded,
2184 compositionEnd, isNonImeChange);
2171 updateImeAdapter(long nativeImeAdapterAndroid, int textInputType, int textInputFlags, String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd, boolean showImeIfNeeded, boolean isNonImeChange) argument

Completed in 522 milliseconds