HomeSort by relevance Sort by last modified time
    Searched defs:compositionEnd (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/public/web/
WebTextInputInfo.h 53 int compositionEnd;
67 , compositionEnd(-1)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.h 56 void setCompositionFromExistingText(const Vector<CompositionUnderline>&, unsigned compositionStart, unsigned compositionEnd);
75 unsigned compositionEnd() const { return m_compositionEnd; }
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
AdapterInputConnection.java 141 * @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 + "]")
    [all...]

Completed in 188 milliseconds