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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElementTest.cpp 40 TEST_F(HTMLTextFormControlElementTest, SetSelectionRange)
49 textControl().setSelectionRange(1, 3);
HTMLTextFormControlElement.h 71 void setSelectionRange(int start, int end, const String& direction);
72 void setSelectionRange(int start, int end, TextFieldSelectionDirection = SelectionHasNoDirection);
HTMLTextFormControlElement.cpp 166 setSelectionRange(start, std::max(start, selectionEnd()), selectionDirection());
171 setSelectionRange(std::min(end, selectionStart()), end, selectionDirection());
176 setSelectionRange(selectionStart(), selectionEnd(), direction);
181 setSelectionRange(0, std::numeric_limits<int>::max(), SelectionHasNoDirection);
264 setSelectionRange(newSelectionStart, newSelectionEnd, SelectionHasNoDirection);
267 void HTMLTextFormControlElement::setSelectionRange(int start, int end, const String& directionString)
275 return setSelectionRange(start, end, direction);
278 void HTMLTextFormControlElement::setSelectionRange(int start, int end, TextFieldSelectionDirection direction)
472 setSelectionRange(m_cachedSelectionStart, m_cachedSelectionEnd, m_cachedSelectionDirection);
HTMLTextAreaElement.idl 61 void setSelectionRange([Default=Undefined] optional long start,
HTMLInputElement.idl 91 void setSelectionRange([Default=Undefined] optional long start,
HTMLTextAreaElement.cpp 244 setSelectionRange(0, 0);
377 setSelectionRange(endOfString, endOfString);
HTMLInputElement.cpp 571 HTMLTextFormControlElement::setSelectionRange(start, end);
580 HTMLTextFormControlElement::setSelectionRange(start, end, direction);
962 setSelectionRange(max, max);
    [all...]
  /external/chromium_org/chrome/test/chromedriver/js/
focus.js 23 // - V8 throws a TypeError when calling setSelectionRange for a non-text
24 // input, which still have setSelectionRange defined. For chrome 29+, V8
32 element.value.length && element.setSelectionRange) {
34 element.setSelectionRange(element.value.length, element.value.length);
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormControlElement.cpp 146 void WebFormControlElement::setSelectionRange(int start, int end)
149 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
151 unwrap<HTMLTextAreaElement>()->setSelectionRange(start, end);
  /external/chromium_org/third_party/WebKit/public/web/
WebFormControlElement.h 95 BLINK_EXPORT void setSelectionRange(int start, int end);
  /frameworks/base/core/tests/inputmethodtests/src/android/os/
CursorAnchorInfoTest.java 94 builder.setSelectionRange(SELECTION_START, SELECTION_END)
237 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END1).build(),
238 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END1).build());
240 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END1).build(),
241 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END2).build());
243 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END1).build(),
244 new Builder().setSelectionRange(SELECTION_START2, SELECTION_END1).build());
246 new Builder().setSelectionRange(SELECTION_START1, SELECTION_END1).build(),
247 new Builder().setSelectionRange(SELECTION_START2, SELECTION_END2).build());
405 builder.setSelectionRange(SELECTION_START, SELECTION_END
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
ttsdemo.js 73 text.setSelectionRange(0, event.charIndex);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
FilterSuggestionBuilder.js 100 input.setSelectionRange(start, text.length);
  /external/chromium_org/components/autofill/content/renderer/
password_autofill_agent.cc 390 username_element.setSelectionRange(username.length(), username.length());
415 username_element.setSelectionRange(
    [all...]
form_cache.cc 218 input_element->setSelectionRange(length, length);
form_autofill_util.cc 562 field->setSelectionRange(length, length);
600 field->setSelectionRange(start, end);
    [all...]
autofill_agent.cc 687 node->setSelectionRange(node->value().length(),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CursorAnchorInfoUtils.java 94 builder.setSelectionRange(selectionStart, textView.getSelectionEnd());
  /external/chromium_org/content/renderer/accessibility/
renderer_accessibility_complete.cc 361 input_element->setSelectionRange(start_offset, end_offset);
  /frameworks/base/core/java/android/view/inputmethod/
CursorAnchorInfo.java 264 public Builder setSelectionRange(final int newStart, final int newEnd) {
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
TextFieldInputType.cpp 164 input->setSelectionRange(max, max);
  /external/chromium_org/chrome/renderer/autofill/
password_autofill_agent_browsertest.cc 274 username_input.setSelectionRange(username.length(), username.length());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotDataGrids.js 811 setSelectionRange: function(minNodeId, maxNodeId)
    [all...]
HeapSnapshotView.js 533 this._constructorsDataGrid.setSelectionRange(minId, maxId);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.cpp     [all...]

Completed in 710 milliseconds

1 2