Searched refs:sanitizeValue (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DTextFieldInputType.h55 virtual String sanitizeValue(const String& proposedValue);
H A DNumberInputType.h69 virtual String sanitizeValue(const String&);
H A DRangeInputType.h70 virtual String sanitizeValue(const String& proposedValue);
H A DTextFieldInputType.cpp122 String TextFieldInputType::sanitizeValue(const String& proposedValue) function in class:WebCore::TextFieldInputType
H A DNumberInputType.cpp245 String NumberInputType::sanitizeValue(const String& proposedValue) function in class:WebCore::NumberInputType
H A DHTMLInputElement.cpp482 m_data.setValue(sanitizeValue(fastGetAttribute(valueAttr)));
848 value = sanitizeValue(fastGetAttribute(valueAttr));
880 m_data.setSuggestedValue(sanitizeValue(value));
897 m_data.setValue(sanitizeValue(value));
903 setAttribute(valueAttr, sanitizeValue(value));
1202 String HTMLInputElement::sanitizeValue(const String& proposedValue) const function in class:WebCore::HTMLInputElement
1204 return m_inputType->sanitizeValue(proposedValue);
H A DHTMLInputElement.h272 virtual String sanitizeValue(const String&) const;
H A DInputType.h159 virtual String sanitizeValue(const String&);
H A DRangeInputType.cpp274 String RangeInputType::sanitizeValue(const String& proposedValue) function in class:WebCore::RangeInputType
H A DInputType.cpp535 String InputType::sanitizeValue(const String& proposedValue) function in class:WebCore::InputType
/external/webkit/Source/WebCore/dom/
H A DInputElement.cpp120 ASSERT_UNUSED(inputElement, value == inputElement->sanitizeValue(value) || inputElement->sanitizeValue(value).isEmpty());
183 // because they can be mismatched by sanitizeValue() in
243 String newValue = inputElement->sanitizeValue(oldValue);
H A DInputElement.h68 virtual String sanitizeValue(const String&) const = 0;
83 // This function should be called only by sanitizeValue() implementations.
/external/webkit/Source/WebCore/wml/
H A DWMLInputElement.h93 virtual String sanitizeValue(const String& proposedValue) const { return constrainValue(proposedValue); } function in class:WebCore::WMLInputElement
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControlSingleLine.cpp195 // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
198 input->setValueFromRenderer(input->sanitizeValue(input->convertFromVisibleValue(value)));

Completed in 330 milliseconds