Searched defs:selectionEnd (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/ime/
H A DComposition.h53 int selectionEnd() const { return m_selectionEnd; } function in class:WebCore::Composition
54 void setSelectionEnd(int selectionEnd) { selectionEnd = m_selectionEnd; } argument
/external/chromium_org/third_party/WebKit/public/web/
H A DWebTextInputInfo.h46 int selectionEnd; member in struct:WebKit::WebTextInputInfo
63 , selectionEnd(0)
H A DWebWidget.h161 // If selectionStart and selectionEnd has the same value, then it indicates
169 int selectionEnd) { return false; }
165 setComposition( const WebString& text, const WebVector<WebCompositionUnderline>& underlines, int selectionStart, int selectionEnd) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DAdapterInputConnection.java112 * @param selectionEnd The character offset of the selection end, or the caret
119 public void setEditableText(String text, int selectionStart, int selectionEnd, argument
122 Log.w(TAG, "setEditableText [" + text + "] [" + selectionStart + " " + selectionEnd
129 selectionEnd = Math.min(selectionEnd, text.length());
146 if (prevSelectionStart == selectionStart && prevSelectionEnd == selectionEnd
153 Selection.setSelection(editable, selectionStart, selectionEnd);
162 updateSelection(selectionStart, selectionEnd, compositionStart, compositionEnd);
167 int selectionStart, int selectionEnd,
171 mLastUpdateSelectionEnd == selectionEnd
166 updateSelection( int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
[all...]
H A DImeAdapter.java210 int selectionStart, int selectionEnd, boolean showIfNeeded) {
229 attach(nativeImeAdapter, textInputType, selectionStart, selectionEnd);
241 int selectionEnd) {
248 mInitialSelectionEnd = selectionEnd;
209 attachAndShowIfNeeded(int nativeImeAdapter, int textInputType, int selectionStart, int selectionEnd, boolean showIfNeeded) argument
240 attach(int nativeImeAdapter, int textInputType, int selectionStart, int selectionEnd) argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DImeTest.java311 final int index, String text, int selectionStart, int selectionEnd,
320 text, selectionStart, selectionEnd, compositionStart, compositionEnd);
379 public void setEditableText(String text, int selectionStart, int selectionEnd, argument
381 mImeUpdateQueue.add(new TestImeState(text, selectionStart, selectionEnd,
384 text, selectionStart, selectionEnd, compositionStart, compositionEnd);
389 int selectionStart, int selectionEnd,
402 public TestImeState(String text, int selectionStart, int selectionEnd, argument
406 mSelectionEnd = selectionEnd;
411 public void assertEqualState(String text, int selectionStart, int selectionEnd, argument
415 assertEquals("Selection end did not match", selectionEnd, mSelectionEn
310 waitAndVerifyEditableCallback(final ArrayList<TestImeState> states, final int index, String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
388 updateSelection( int selectionStart, int selectionEnd, int compositionStart, int compositionEnd) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DInputMethodController.cpp224 void InputMethodController::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, unsigned selectionStart, unsigned selectionEnd) argument
307 unsigned end = std::min(std::max(start, baseOffset + selectionEnd), extentOffset);
H A DEditor.cpp1716 bool Editor::setSelectionOffsets(int selectionStart, int selectionEnd) argument
1722 RefPtr<Range> range = TextIterator::rangeFromLocationAndLength(rootEditableElement, selectionStart, selectionEnd - selectionStart);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebInputElement.cpp165 int WebInputElement::selectionEnd() const function in class:WebKit::WebInputElement
167 return constUnwrap<HTMLInputElement>()->selectionEnd();
H A DWebAccessibilityObject.cpp602 unsigned WebAccessibilityObject::selectionEnd() const function in class:WebKit::WebAccessibilityObject
623 VisiblePosition position = m_private->visiblePositionForIndex(selectionEnd());
648 void WebAccessibilityObject::setSelectedTextRange(int selectionStart, int selectionEnd) const
653 m_private->setSelectedTextRange(PlainTextRange(selectionStart, selectionEnd - selectionStart));
H A DWebViewImpl.cpp2065 int selectionEnd)
2106 // selectionStart and selectionEnd, WebKit somehow won't paint the selection
2111 selectionStart, selectionEnd); local
2221 info.selectionEnd = location + length;
2061 setComposition( const WebString& text, const WebVector<WebCompositionUnderline>& underlines, int selectionStart, int selectionEnd) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderReplaced.cpp544 int selectionStart, selectionEnd; local
545 selectionStartEnd(selectionStart, selectionEnd);
551 return selectionEnd == end;
553 return selectionStart == 0 && selectionEnd == end;
H A DRenderView.h90 RenderObject* selectionEnd() const { return m_selectionEnd; } function in class:WebCore::FINAL
/external/chromium_org/content/renderer/
H A Drender_widget_fullscreen_pepper.cc300 int selectionEnd) {
296 setComposition( const WebString& text, const WebVector<WebCompositionUnderline>& underlines, int selectionStart, int selectionEnd) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp180 setSelectionRange(start, max(start, selectionEnd()), selectionDirection());
190 setSelectionRange(selectionStart(), selectionEnd(), direction);
202 return value().substring(selectionStart(), selectionEnd() - selectionStart());
223 setRangeText(replacement, selectionStart(), selectionEnd(), String(), es);
237 unsigned newSelectionEnd = selectionEnd();
371 int HTMLTextFormControlElement::selectionEnd() const function in class:WebCore::HTMLTextFormControlElement
492 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focus
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DAccessibilityUIElementChromium.cpp577 unsigned selectionEnd = accessibilityObject().selectionEnd(); local
579 snprintf(buffer, sizeof(buffer), "{%d, %d}", selectionStart, selectionEnd - selectionStart);
882 int selectionEnd = selectionStart + arguments[1].toInt32(); local
883 accessibilityObject().setSelectedTextRange(selectionStart, selectionEnd);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTextView.java50 protected int selectionEnd = 0; field in class:ShadowTextView
86 boolean isSelectEndAtEnd = selectionEnd == this.text.length();
98 selectionEnd = this.text.length();
494 selectionEnd = end;
504 return selectionEnd;
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityObject.h493 unsigned selectionEnd() const { return selectedTextRange().length; } function in class:WebCore::AccessibilityObject
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DContentViewCore.java2341 String text, int selectionStart, int selectionEnd,
2349 selectionStart, selectionEnd, showImeIfNeeded);
2352 mInputConnection.setEditableText(text, selectionStart, selectionEnd,
2340 updateImeAdapter(int nativeImeAdapterAndroid, int textInputType, String text, int selectionStart, int selectionEnd, int compositionStart, int compositionEnd, boolean showImeIfNeeded) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 441 milliseconds