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

  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.h 48 virtual void cacheSelection(int start, int end);
RenderTextControlMultiLine.cpp 111 void RenderTextControlMultiLine::cacheSelection(int start, int end)
113 static_cast<HTMLTextAreaElement*>(node())->cacheSelection(start, end);
RenderTextControl.h 79 virtual void cacheSelection(int start, int end) = 0;
RenderTextControlSingleLine.h 83 virtual void cacheSelection(int start, int end);
RenderTextControl.cpp 250 cacheSelection(start, end);
500 cacheSelection(selectionStart(), selectionEnd());
RenderTextControlSingleLine.cpp 486 void RenderTextControlSingleLine::cacheSelection(int start, int end)
488 inputElement()->cacheSelection(start, end);
  /external/webkit/WebCore/wml/
WMLInputElement.h 80 virtual void cacheSelection(int start, int end);
WMLInputElement.cpp 154 cacheSelection(max, max);
315 void WMLInputElement::cacheSelection(int start, int end)
  /external/webkit/WebCore/dom/
InputElement.h 58 virtual void cacheSelection(int start, int end) = 0;
  /external/webkit/WebCore/html/
HTMLTextAreaElement.h 87 void cacheSelection(int s, int e) { m_cachedSelectionStart = s; m_cachedSelectionEnd = e; };
HTMLInputElement.h 250 virtual void cacheSelection(int start, int end);
HTMLInputElement.cpp     [all...]

Completed in 105 milliseconds