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

1 2

  /external/webkit/Source/WebCore/bindings/js/
JSHTMLInputElementCustom.cpp 54 JSValue JSHTMLInputElement::selectionEnd(ExecState* exec) const
60 return jsNumber(input->selectionEnd());
  /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();
  /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/WebKit/chromium/src/
WebInputElement.cpp 138 int WebInputElement::selectionEnd() const
140 return constUnwrap<HTMLInputElement>()->selectionEnd();
WebViewImpl.cpp     [all...]
  /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);
  /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;
RenderView.h 79 RenderObject* selectionEnd() const { return m_selectionEnd; }
RenderTextControl.cpp 216 int RenderTextControl::selectionEnd() const
603 cacheSelection(selectionStart(), selectionEnd());
  /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);
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.cpp 655 setSelectionRange(start, max(start, selectionEnd()));
693 int HTMLTextFormControlElement::selectionEnd() const
701 return toRenderTextControl(renderer())->selectionEnd();
  /external/webkit/Source/WebKit/win/
DOMHTMLClasses.cpp     [all...]
  /frameworks/base/core/java/android/text/
SpannableStringBuilder.java 471 int selectionEnd = 0;
474 selectionEnd = Selection.getSelectionEnd(this);
487 if (selectionEnd > start && selectionEnd < end) {
488 final int offset = (selectionEnd - start) * newLen / origLen;
489 selectionEnd = start + offset;
491 setSpan(false, Selection.SELECTION_END, selectionEnd, selectionEnd,
    [all...]
  /frameworks/base/core/java/android/widget/
SpellChecker.java 270 final int selectionEnd = Selection.getSelectionEnd(editable);
288 isEditing = selectionEnd <= start || selectionStart > end;
290 isEditing = selectionEnd < start || selectionStart > end;
302 + selectionEnd + ", start = " + start + ", end = " + end);
Editor.java 612 int selectionStart, selectionEnd;
620 selectionEnd = ((Spanned) mTextView.getText()).getSpanEnd(urlSpan);
626 selectionEnd = wordIterator.getEnd(maxOffset);
628 if (selectionStart == BreakIterator.DONE || selectionEnd == BreakIterator.DONE ||
629 selectionStart == selectionEnd) {
633 selectionEnd = TextUtils.unpackRangeEndFromLong(range);
637 Selection.setSelection((Spannable) mTextView.getText(), selectionStart, selectionEnd);
638 return selectionEnd > selectionStart;
683 int selectionEnd = mTextView.getSelectionEnd();
685 if (selectionStart == selectionEnd) {
    [all...]
TextView.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 357 int selectionEnd = selectionBegin + selectedRange.y;
358 return addSelection(newFileContents, selectionBegin, selectionEnd);
361 protected String addSelection(String newFileContents, int selectionBegin, int selectionEnd) {
364 if (selectionBegin < selectionEnd) {
366 + newFileContents.substring(selectionBegin, selectionEnd) + "]"
367 + newFileContents.substring(selectionEnd);
  /packages/apps/Contacts/src/com/android/contacts/dialpad/
DialpadFragment.java 676 int selectionEnd;
680 selectionEnd = mDigits.getSelectionEnd();
683 if (selectionStart > selectionEnd) {
686 selectionStart = selectionEnd;
687 selectionEnd = tmp;
695 waitMenuItem.setVisible(showWait(selectionStart, selectionEnd, strDigits));
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.h 436 unsigned selectionEnd() const { return selectedTextRange().length; }
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 213 final int selectionEnd = LONG_TEXT.length();
221 selectionStart, selectionEnd);
229 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
240 selectionStart, selectionEnd);
248 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
253 assertEquals(selectionEnd, Selection.getSelectionEnd(mTextView.getText()));
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp     [all...]
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 232 int selectionEnd = Selection.getSelectionEnd(editable);
238 selectionEnd = Math.min(selectionEnd, editable.length());
239 setSelection(selectionStart, selectionEnd);
246 int selectionEnd = Selection.getSelectionEnd(editable);
247 text = limitReplaceTextByMaxLength(text, selectionEnd - selectionStart);
248 setNewText(selectionStart, selectionEnd, text);
249 editable.replace(selectionStart, selectionEnd, text);
442 int selectionEnd = Selection.getSelectionEnd(editable);
443 if (selectionStart < 0 || selectionEnd < 0)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 

Completed in 397 milliseconds

1 2