HomeSort by relevance Sort by last modified time
    Searched refs:selectionEnd (Results 1 - 25 of 40) sorted by null

1 2

  /cts/tests/tests/view/src/android/view/inputmethod/cts/
ExtractedTextTest.java 46 extractedText.selectionEnd = 11;
56 assertEquals(extractedText.selectionEnd, target.selectionEnd);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 105 int selectionEnd = prefs.getInt("selection-end", -1);
106 if (selectionStart != -1 && selectionEnd != -1) {
107 mSaved.setSelection(selectionStart, selectionEnd);
  /external/webkit/WebCore/editing/
MoveSelectionCommand.cpp 52 Position selectionEnd = selection.end();
53 int selectionEndOffset = selectionEnd.deprecatedEditingOffset();
54 if (selectionEnd.node() == positionNode && selectionEndOffset < positionOffset) {
Editor.h 257 void setComposition(const String&, const Vector<CompositionUnderline>&, unsigned selectionStart, unsigned selectionEnd);
262 bool getCompositionSelection(unsigned& selectionStart, unsigned& selectionEnd) const;
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedText.java 63 * <var>startOffset</var>+<var>selectionEnd</var>.
65 public int selectionEnd;
95 dest.writeInt(selectionEnd);
110 res.selectionEnd = source.readInt();
  /external/webkit/WebCore/bindings/js/
JSHTMLInputElementCustom.cpp 88 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const
94 return jsNumber(exec, input->selectionEnd());
  /external/webkit/WebCore/html/
HTMLTextAreaElement.idl 51 attribute long selectionEnd;
HTMLFormControlElement.h 163 int selectionEnd();
HTMLInputElement.idl 88 attribute [Custom] long selectionEnd;
HTMLFormControlElement.cpp 501 int HTMLTextFormControlElement::selectionEnd()
509 return toRenderTextControl(renderer())->selectionEnd();
  /external/webkit/WebCore/rendering/
SVGInlineTextBox.cpp 325 bool SVGInlineTextBox::chunkSelectionStartEnd(const UChar* chunk, int chunkLength, int& selectionStart, int& selectionEnd)
333 selectionStartEnd(selectionStart, selectionEnd);
334 if (selectionEnd <= chunkStart)
341 selectionEnd -= chunkStart;
345 if (chunkLength < selectionEnd)
346 selectionEnd = chunkLength;
348 return selectionStart < selectionEnd;
429 int selectionEnd = 0;
430 bool haveSelectedRange = haveSelection && chunkSelectionStartEnd(chars, length, selectionStart, selectionEnd);
435 paintInfo.context->drawText(font, run, origin, selectionEnd, run.length())
    [all...]
SVGInlineTextBox.h 88 bool chunkSelectionStartEnd(const UChar* chunk, int chunkLength, int& selectionStart, int& selectionEnd);
RenderReplaced.cpp 310 int selectionStart, selectionEnd;
311 selectionStartEnd(selectionStart, selectionEnd);
316 if (s == SelectionEnd)
317 return selectionEnd == end;
319 return selectionStart == 0 && selectionEnd == end;
RenderTextControl.h 44 int selectionEnd();
RenderTextControl.cpp 219 int RenderTextControl::selectionEnd()
229 setSelectionRange(start, max(start, selectionEnd()));
500 cacheSelection(selectionStart(), selectionEnd());
RenderView.h 73 virtual RenderObject* selectionEnd() const { return m_selectionEnd; }
  /packages/apps/Contacts/src/com/android/contacts/
TwelveKeyDialer.java 552 int selectionEnd;
556 selectionEnd = mDigits.getSelectionEnd();
559 if (selectionStart > selectionEnd) {
562 selectionStart = selectionEnd;
563 selectionEnd = tmp;
572 selectionEnd, strDigits));
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLInputElementCustom.cpp 69 INC_STATS("DOM.HTMLInputElement.selectionEnd._get");
74 return throwError("Accessing selectionEnd on an input element that cannot have a selection.");
76 int v = imp->selectionEnd();
82 INC_STATS("DOM.HTMLInputElement.selectionEnd._set");
87 throwError("Accessing selectionEnd on an input element that cannot have a selection.");
  /external/webkit/WebCore/bindings/objc/
DOMHTML.mm 139 int end = inputElement->selectionEnd();
  /external/webkit/WebKit/chromium/src/
EditorClientImpl.cpp 747 isCaretAtEnd = inputElement->selectionStart() == inputElement->selectionEnd()
748 && inputElement->selectionEnd() == static_cast<int>(value.length());
    [all...]
  /frameworks/base/core/java/android/widget/
TextView.java     [all...]
  /external/webkit/WebKit/win/
DOMHTMLClasses.cpp     [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityObject.h 399 unsigned selectionEnd() const { return selectedTextRange().length; }
  /external/webkit/WebKit/win/Interfaces/
DOMHTML.idl 800 // attribute long selectionEnd;
802 HRESULT selectionEnd([out, retval] long* end);
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 306 final int selectionEnd = LONG_TEXT.length();
314 selectionStart, selectionEnd);
322 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
333 selectionStart, selectionEnd);
341 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
346 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
    [all...]

Completed in 804 milliseconds

1 2