HomeSort by relevance Sort by last modified time
    Searched refs:cachedSelectionStart (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/dom/
InputElement.h 105 int cachedSelectionStart() const { return m_cachedSelectionStart; }
InputElement.cpp 85 if (!restorePreviousSelection || data.cachedSelectionStart() == -1)
89 updateSelectionRange(inputElement, element, data.cachedSelectionStart(), data.cachedSelectionEnd());
  /external/webkit/WebCore/html/
HTMLFormControlElement.cpp 494 if (document()->focusedNode() != this && cachedSelectionStart() >= 0)
495 return cachedSelectionStart();
514 if (!renderer() || !isTextFormControl() || cachedSelectionStart() < 0 || cachedSelectionEnd() < 0)
516 return toRenderTextControl(renderer())->selection(cachedSelectionStart(), cachedSelectionEnd());
HTMLFormControlElement.h 173 virtual int cachedSelectionStart() const = 0;
HTMLTextAreaElement.h 101 virtual int cachedSelectionStart() const { return m_cachedSelectionStart; }
HTMLInputElement.h 289 virtual int cachedSelectionStart() const { return m_data.cachedSelectionStart(); }
  /external/webkit/WebCore/wml/
WMLInputElement.cpp 452 cursorPosition = m_data.cachedSelectionStart();

Completed in 5661 milliseconds