Searched refs:cachedSelectionStart (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLTextAreaElement.h76 virtual int cachedSelectionStart() const { return m_cachedSelectionStart; } function in class:WebCore::HTMLTextAreaElement
H A DHTMLFormControlElement.cpp686 if (document()->focusedNode() != this && cachedSelectionStart() >= 0)
687 return cachedSelectionStart();
706 if (!renderer() || !isTextFormControl() || cachedSelectionStart() < 0 || cachedSelectionEnd() < 0)
708 return toRenderTextControl(renderer())->selection(cachedSelectionStart(), cachedSelectionEnd());
H A DHTMLInputElement.h294 virtual int cachedSelectionStart() const { return m_data.cachedSelectionStart(); } function in class:WebCore::HTMLInputElement
H A DHTMLFormControlElement.h230 virtual int cachedSelectionStart() const = 0;
/external/webkit/Source/WebCore/dom/
H A DInputElement.h134 int cachedSelectionStart() const { return m_cachedSelectionStart; } function in class:WebCore::InputElementData
H A DInputElement.cpp85 if (!restorePreviousSelection || data.cachedSelectionStart() == -1)
89 updateSelectionRange(inputElement, element, data.cachedSelectionStart(), data.cachedSelectionEnd());
/external/webkit/Source/WebCore/wml/
H A DWMLInputElement.cpp463 cursorPosition = m_data.cachedSelectionStart();

Completed in 119 milliseconds