Searched defs:visibleValue (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/wml/
H A DWMLInputElement.h68 virtual String visibleValue() const { return value(); } function in class:WebCore::WMLInputElement
/external/webkit/Source/WebCore/html/
H A DNumberInputType.cpp220 String NumberInputType::visibleValue() const function in class:WebCore::NumberInputType
232 String NumberInputType::convertFromVisibleValue(const String& visibleValue) const
234 if (visibleValue.isEmpty())
235 return visibleValue;
236 double parsedNumber = parseLocalizedNumber(visibleValue);
237 return isfinite(parsedNumber) ? serializeForNumberType(parsedNumber) : visibleValue;
H A DInputType.cpp520 String InputType::visibleValue() const function in class:WebCore::InputType
525 String InputType::convertFromVisibleValue(const String& visibleValue) const
527 return visibleValue;
H A DHTMLInputElement.cpp1187 String HTMLInputElement::visibleValue() const function in class:WebCore::HTMLInputElement
1189 return m_inputType->visibleValue();
1192 String HTMLInputElement::convertFromVisibleValue(const String& visibleValue) const
1194 return m_inputType->convertFromVisibleValue(visibleValue);

Completed in 134 milliseconds