HomeSort by relevance Sort by last modified time
    Searched full:selectionend (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /cts/tests/tests/view/src/android/view/inputmethod/cts/
ExtractedTextTest.java 29 extractedText.selectionEnd = 11;
39 assertEquals(extractedText.selectionEnd, target.selectionEnd);
  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 102 int selectionEnd = Selection.getSelectionEnd(content);
103 if (selectionEnd < selectionStart) {
104 int temp = selectionEnd;
105 selectionEnd = selectionStart;
108 if (selectionStart != selectionEnd) {
109 content.delete(selectionStart, selectionEnd);
184 int selectionEnd = Selection.getSelectionEnd(content);
185 if (selectionEnd < selectionStart) {
186 int temp = selectionEnd;
187 selectionEnd = selectionStart
    [all...]
ArrowKeyMovementMethod.java 199 final int selectionEnd = widget.getSelectionEnd();
201 wordIterator.setCharSequence(buffer, selectionEnd, selectionEnd);
208 final int selectionEnd = widget.getSelectionEnd();
210 wordIterator.setCharSequence(buffer, selectionEnd, selectionEnd);
  /cts/tests/tests/webkitsecurity/assets/
move-by-word-visually-crash-test-textarea.html 11 test.selectionEnd = 1;
update-from-element-during-editing-crash-1.html 17 textarea.selectionEnd = 1;
update-from-element-during-editing-crash-2.html 17 textarea.selectionEnd = 1;
text-control-crash-on-select.html 33 $(id).selectionEnd = 1;
  /external/webkit/Source/WebCore/editing/
MoveSelectionCommand.cpp 49 Position selectionEnd = endingSelection().end();
50 if (pos.anchorType() == Position::PositionIsOffsetInAnchor && selectionEnd.anchorType() == Position::PositionIsOffsetInAnchor
51 && selectionEnd.containerNode() == pos.containerNode() && selectionEnd.offsetInContainerNode() < pos.offsetInContainerNode()) {
52 pos.moveToOffset(pos.offsetInContainerNode() - selectionEnd.offsetInContainerNode());
  /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/Source/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/Source/WebCore/bindings/js/
JSHTMLInputElementCustom.cpp 54 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const
60 return jsNumber(input->selectionEnd());
  /external/chromium/chrome/browser/extensions/
extension_accessibility_api_constants.cc 18 const char kSelectionEndKey[] = "details.selectionEnd";
  /external/webkit/Source/WebKit/chromium/src/
WebInputElement.cpp 138 int WebInputElement::selectionEnd() const
140 return constUnwrap<HTMLInputElement>()->selectionEnd();
  /frameworks/base/core/java/android/webkit/
SearchBox.java 52 * no such selection, then both selectionStart and selectionEnd must be the offset
57 void setSelection(int selectionStart, int selectionEnd);
SearchBoxImpl.java 62 + " sb.selectionEnd = 0;"
81 + " f.selectionEnd = %d"
145 public void setSelection(int selectionStart, int selectionEnd) {
146 final String js = String.format(SET_SELECTION_SCRIPT, selectionStart, selectionEnd);
  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.idl 50 attribute long selectionEnd;
HTMLInputElement.idl 93 attribute [Custom] long 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/Source/WebCore/rendering/
RenderReplaced.cpp 363 int selectionStart, selectionEnd;
364 selectionStartEnd(selectionStart, selectionEnd);
369 if (s == SelectionEnd)
370 return selectionEnd == end;
372 return selectionStart == 0 && selectionEnd == end;
RenderTextControl.h 43 int selectionEnd() const;
  /cts/tests/tests/text/src/android/text/method/cts/
BaseKeyListenerTest.java 125 final int selectionStart, final int selectionEnd) {
132 selectionEnd);
  /external/webkit/Source/WebKit/chromium/public/
WebWidget.h 100 // If selectionStart and selectionEnd has the same value, then it indicates
108 int selectionEnd) = 0;
WebInputElement.h 77 WEBKIT_API int selectionEnd() const;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 290 int selectionEnd = selectionStart + selection.y;
291 if (selectionEnd > selectionStart) {
294 text.substring(selectionStart, selectionEnd) + "]" +
295 text.substring(selectionEnd);
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 91 private void verifySelectCurrentWord(Spannable text, int selectionStart, int selectionEnd, int correctStart,
95 Selection.setSelection((Spannable)mTv.getText(), selectionStart, selectionEnd);

Completed in 722 milliseconds

1 2 3 4