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

  /external/webkit/Source/WebCore/html/
HTMLTextAreaElement.h 61 void cacheSelection(int s, int e) { m_cachedSelectionStart = s; m_cachedSelectionEnd = e; };
76 virtual int cachedSelectionStart() const { return m_cachedSelectionStart; }
110 int m_cachedSelectionStart;
HTMLTextAreaElement.cpp 76 , m_cachedSelectionStart(-1)
212 if (!restorePreviousSelection || m_cachedSelectionStart < 0) {
226 setSelectionRange(m_cachedSelectionStart, m_cachedSelectionEnd);
  /external/webkit/Source/WebCore/dom/
InputElement.h 134 int cachedSelectionStart() const { return m_cachedSelectionStart; }
135 void setCachedSelectionStart(int value) { m_cachedSelectionStart = value; }
155 int m_cachedSelectionStart;
InputElement.cpp 263 , m_cachedSelectionStart(-1)

Completed in 394 milliseconds