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

  /external/webkit/Source/WebCore/html/
TextFieldInputType.h 55 virtual String sanitizeValue(const String& proposedValue);
NumberInputType.h 69 virtual String sanitizeValue(const String&);
RangeInputType.h 70 virtual String sanitizeValue(const String& proposedValue);
TextFieldInputType.cpp 122 String TextFieldInputType::sanitizeValue(const String& proposedValue)
InputType.h 159 virtual String sanitizeValue(const String&);
NumberInputType.cpp 245 String NumberInputType::sanitizeValue(const String& proposedValue)
HTMLInputElement.cpp 486 m_data.setValue(sanitizeValue(fastGetAttribute(valueAttr)));
852 value = sanitizeValue(fastGetAttribute(valueAttr));
884 m_data.setSuggestedValue(sanitizeValue(value));
901 m_data.setValue(sanitizeValue(value));
907 setAttribute(valueAttr, sanitizeValue(value));
    [all...]
HTMLInputElement.h 272 virtual String sanitizeValue(const String&) const;
RangeInputType.cpp 274 String RangeInputType::sanitizeValue(const String& proposedValue)
InputType.cpp 535 String InputType::sanitizeValue(const String& proposedValue)
  /external/webkit/Source/WebCore/wml/
WMLInputElement.h 93 virtual String sanitizeValue(const String& proposedValue) const { return constrainValue(proposedValue); }
  /external/webkit/Source/WebCore/dom/
InputElement.cpp 120 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);
InputElement.h 68 virtual String sanitizeValue(const String&) const = 0;
83 // This function should be called only by sanitizeValue() implementations.
  /external/webkit/Source/WebCore/rendering/
RenderTextControlSingleLine.cpp 195 // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
198 input->setValueFromRenderer(input->sanitizeValue(input->convertFromVisibleValue(value)));
    [all...]

Completed in 541 milliseconds