Home
last modified time | relevance | path

Searched refs:visibleValue (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/html/
DNumberInputType.cpp220 String NumberInputType::visibleValue() const in visibleValue() function in WebCore::NumberInputType
232 String NumberInputType::convertFromVisibleValue(const String& visibleValue) const in convertFromVisibleValue()
234 if (visibleValue.isEmpty()) in convertFromVisibleValue()
235 return visibleValue; in convertFromVisibleValue()
236 double parsedNumber = parseLocalizedNumber(visibleValue); in convertFromVisibleValue()
237 return isfinite(parsedNumber) ? serializeForNumberType(parsedNumber) : visibleValue; in convertFromVisibleValue()
DInputType.cpp520 String InputType::visibleValue() const in visibleValue() function in WebCore::InputType
525 String InputType::convertFromVisibleValue(const String& visibleValue) const in convertFromVisibleValue()
527 return visibleValue; in convertFromVisibleValue()
DNumberInputType.h66 virtual String visibleValue() const;
DHTMLInputElement.cpp1191 String HTMLInputElement::visibleValue() const in visibleValue() function in WebCore::HTMLInputElement
1193 return m_inputType->visibleValue(); in visibleValue()
1196 String HTMLInputElement::convertFromVisibleValue(const String& visibleValue) const in convertFromVisibleValue()
1198 return m_inputType->convertFromVisibleValue(visibleValue); in convertFromVisibleValue()
DInputType.h155 virtual String visibleValue() const;
DHTMLInputElement.h269 virtual String visibleValue() const;
/external/webkit/Source/WebCore/wml/
DWMLInputElement.h68 virtual String visibleValue() const { return value(); } in visibleValue() function
/external/webkit/Source/WebCore/dom/
DInputElement.h63 virtual String visibleValue() const = 0;
/external/webkit/Source/WebCore/rendering/
DRenderTextControlSingleLine.cpp701 setInnerTextValue(inputElement()->visibleValue()); in updateFromElement()
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1616769 We introduce HTMLInputElement::visibleValue(). It represents a value
16771 returns a number formatted for HTML5, and visibleValue() may return a
16783 * dom/InputElement.h: Add visibleValue().
16785 (WebCore::HTMLInputElement::visibleValue): Added. Just call InputType::visibleValue().
16786 * html/HTMLInputElement.h: Declare visibleValue().
16788 (WebCore::InputType::visibleValue): Add the default implementation of
16789 visibleValue(), which returns HTMLInputElement::value().
16794 (WebCore::NumberInputType::visibleValue):
16806 Calls InputElement::visibleValue() instead of value().
16808 (WebCore::WMLInputElement::visibleValue): Added. It just calls value().
DChangeLog7056 (WebCore::BaseDateAndTimeInputType::visibleValue): allow
40688 - NumberInputType::visibleValue uses parseToDoubleForNumberTypeWithDecimalPlaces()
40695 (WebCore::NumberInputType::visibleValue):