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

  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.h 77 virtual int cachedSelectionEnd() const { return m_cachedSelectionEnd; }
HTMLFormControlElement.cpp 697 if (document()->focusedNode() != this && cachedSelectionEnd() >= 0)
698 return cachedSelectionEnd();
706 if (!renderer() || !isTextFormControl() || cachedSelectionStart() < 0 || cachedSelectionEnd() < 0)
708 return toRenderTextControl(renderer())->selection(cachedSelectionStart(), cachedSelectionEnd());
HTMLFormControlElement.h 231 virtual int cachedSelectionEnd() const = 0;
HTMLInputElement.h 295 virtual int cachedSelectionEnd() const { return m_data.cachedSelectionEnd(); }
  /external/webkit/Source/WebCore/dom/
InputElement.h 137 int cachedSelectionEnd() const { return m_cachedSelectionEnd; }
InputElement.cpp 89 updateSelectionRange(inputElement, element, data.cachedSelectionStart(), data.cachedSelectionEnd());

Completed in 477 milliseconds