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

  /external/webkit/WebCore/dom/
InputElement.h 55 virtual String sanitizeValue(const String&) const = 0;
73 static String sanitizeValue(const InputElement*, const String&);
InputElement.cpp 123 ASSERT_UNUSED(inputElement, value == inputElement->sanitizeValue(value) || inputElement->sanitizeValue(value).isEmpty());
139 String InputElement::sanitizeValue(const InputElement* inputElement, const String& proposedValue)
171 // because they can be mismatched by sanitizeValue() in
215 String newValue = sanitizeValue(inputElement, oldValue);
  /external/webkit/WebCore/wml/
WMLInputElement.h 82 virtual String sanitizeValue(const String& proposedValue) const { return constrainValue(proposedValue); }
  /external/webkit/WebCore/html/
HTMLInputElement.h 254 virtual String sanitizeValue(const String&) const;
HTMLInputElement.cpp 840 m_data.setValue(sanitizeValue(getAttribute(valueAttr)));
    [all...]
  /external/webkit/WebCore/rendering/
RenderTextControlSingleLine.cpp 160 // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
161 input->setValueFromRenderer(input->sanitizeValue(text()));

Completed in 58 milliseconds