HomeSort by relevance Sort by last modified time
    Searched refs:selectionEnd (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 180 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
492 // selectionStart() or selectionEnd() will return cached selection when this node doesn't have focus
HTMLTextFormControlElement.h 63 int selectionEnd() const;
HTMLInputElement.idl 78 [RaisesException, ImplementedAs=selectionEndForBinding] attribute long selectionEnd;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPopupMenuImpl.h 81 int selectionStart, int selectionEnd) OVERRIDE;
WebAccessibilityObject.cpp 602 unsigned WebAccessibilityObject::selectionEnd() const
623 VisiblePosition position = m_private->visiblePositionForIndex(selectionEnd());
648 void WebAccessibilityObject::setSelectedTextRange(int selectionStart, int selectionEnd) const
653 m_private->setSelectedTextRange(PlainTextRange(selectionStart, selectionEnd - selectionStart));
  /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);
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderReplaced.cpp 544 int selectionStart, selectionEnd;
545 selectionStartEnd(selectionStart, selectionEnd);
550 if (s == SelectionEnd)
551 return selectionEnd == end;
553 return selectionStart == 0 && selectionEnd == end;
RenderView.h 90 RenderObject* selectionEnd() const { return m_selectionEnd; }
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodController.cpp 224 void InputMethodController::setComposition(const String& text, const Vector<CompositionUnderline>& underlines, unsigned selectionStart, unsigned selectionEnd)
307 unsigned end = std::min(std::max(start, baseOffset + selectionEnd), extentOffset);
Editor.h 227 bool setSelectionOffsets(int selectionStart, int selectionEnd);
  /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/
Editor.java 658 int selectionStart, selectionEnd;
666 selectionEnd = ((Spanned) mTextView.getText()).getSpanEnd(urlSpan);
672 selectionEnd = wordIterator.getEnd(maxOffset);
674 if (selectionStart == BreakIterator.DONE || selectionEnd == BreakIterator.DONE ||
675 selectionStart == selectionEnd) {
679 selectionEnd = TextUtils.unpackRangeEndFromLong(range);
683 Selection.setSelection((Spannable) mTextView.getText(), selectionStart, selectionEnd);
684 return selectionEnd > selectionStart;
729 int selectionEnd = mTextView.getSelectionEnd();
731 if (selectionStart == selectionEnd) {
    [all...]
SpellChecker.java 273 final int selectionEnd = Selection.getSelectionEnd(editable);
291 isEditing = selectionEnd <= start || selectionStart > end;
293 isEditing = selectionEnd < start || selectionStart > end;
305 + selectionEnd + ", start = " + start + ", end = " + end);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
AccessibilityUIElementChromium.cpp 577 unsigned selectionEnd = accessibilityObject().selectionEnd();
579 snprintf(buffer, sizeof(buffer), "{%d, %d}", selectionStart, selectionEnd - selectionStart);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java     [all...]
  /external/chromium_org/chrome/renderer/autofill/
form_autofill_browsertest.cc     [all...]
password_autofill_agent_browsertest.cc 177 EXPECT_EQ(end, username_element_.selectionEnd());
  /external/chromium_org/components/autofill/content/renderer/
autofill_agent.cc 647 (element.selectionStart() != element.selectionEnd() ||
648 element.selectionEnd() != static_cast<int>(value.length())))) {
password_autofill_agent.cc 634 if (username.selectionStart() != username.selectionEnd() ||
635 username.selectionEnd() != static_cast<int>(username.value().length())) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
AdtProjectTest.java 387 int selectionEnd = selectionBegin + selectedRange.y;
388 return addSelection(newFileContents, selectionBegin, selectionEnd);
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityObject.h 493 unsigned selectionEnd() const { return selectedTextRange().length; }
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js     [all...]
  /external/chromium/webkit/glue/
webaccessibility.cc 360 input_element.selectionEnd());
  /external/chromium_org/content/renderer/
render_view_browsertest.cc     [all...]

Completed in 1254 milliseconds

12 3 4