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

  /external/webkit/Source/WebCore/html/
HTMLInputElement.h 290 virtual int cachedSelectionStart() const { return m_data.cachedSelectionStart(); }
HTMLTextAreaElement.h 76 virtual int cachedSelectionStart() const { return m_cachedSelectionStart; }
HTMLFormControlElement.cpp 686 if (document()->focusedNode() != this && cachedSelectionStart() >= 0)
687 return cachedSelectionStart();
706 if (!renderer() || !isTextFormControl() || cachedSelectionStart() < 0 || cachedSelectionEnd() < 0)
708 return toRenderTextControl(renderer())->selection(cachedSelectionStart(), cachedSelectionEnd());
HTMLFormControlElement.h 230 virtual int cachedSelectionStart() const = 0;
  /external/webkit/Source/WebCore/dom/
InputElement.h 134 int cachedSelectionStart() const { return m_cachedSelectionStart; }
InputElement.cpp 85 if (!restorePreviousSelection || data.cachedSelectionStart() == -1)
89 updateSelectionRange(inputElement, element, data.cachedSelectionStart(), data.cachedSelectionEnd());
  /external/webkit/Source/WebCore/wml/
WMLInputElement.cpp 463 cursorPosition = m_data.cachedSelectionStart();

Completed in 454 milliseconds