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

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DEmailInputType.h50 virtual String sanitizeValue(const String&) const OVERRIDE;
H A DBaseDateAndTimeInputType.h51 virtual String sanitizeValue(const String&) const OVERRIDE;
H A DColorInputType.h62 virtual String sanitizeValue(const String&) const OVERRIDE;
H A DNumberInputType.h63 virtual String sanitizeValue(const String&) const OVERRIDE;
H A DRangeInputType.h67 virtual String sanitizeValue(const String& proposedValue) const OVERRIDE;
H A DDateInputType.cpp94 if (value != element().sanitizeValue(value)) {
H A DTextFieldInputType.h85 virtual String sanitizeValue(const String&) const OVERRIDE;
H A DBaseDateAndTimeInputType.cpp163 String BaseDateAndTimeInputType::sanitizeValue(const String& proposedValue) const function in class:blink::BaseDateAndTimeInputType
H A DColorInputType.cpp108 String ColorInputType::sanitizeValue(const String& proposedValue) const function in class:blink::ColorInputType
H A DEmailInputType.cpp245 String EmailInputType::sanitizeValue(const String& proposedValue) const function in class:blink::EmailInputType
263 String sanitizedValue = sanitizeValue(visibleValue);
H A DBaseMultipleFieldsDateAndTimeInputType.cpp186 String newValue = sanitizeValue(dateTimeEditElement()->value());
482 element().setValueInternal(sanitizeValue(edit->value()), DispatchNoEvent);
H A DTextFieldInputType.cpp398 String TextFieldInputType::sanitizeValue(const String& proposedValue) const function in class:blink::TextFieldInputType
409 // sanitizeValue() in HTMLInputElement::subtreeHasChanged() in some cases.
491 // sanitizeValue() is needed because IME input doesn't dispatch BeforeTextInsertedEvent.
492 element().setValueFromRenderer(sanitizeValue(convertFromVisibleValue(element().innerEditorValue())));
H A DInputType.h136 // This function must be called only by HTMLInputElement::sanitizeValue().
137 virtual String sanitizeValue(const String&) const;
H A DNumberInputType.cpp231 String NumberInputType::sanitizeValue(const String& proposedValue) const function in class:blink::NumberInputType
H A DRangeInputType.cpp295 String RangeInputType::sanitizeValue(const String& proposedValue) const function in class:blink::RangeInputType
H A DInputType.cpp579 String InputType::sanitizeValue(const String& proposedValue) const function in class:blink::InputType
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLInputElement.cpp443 m_valueIfDirty = sanitizeValue(valueString);
929 value = sanitizeValue(valueString);
961 m_suggestedValue = sanitizeValue(value);
1006 String sanitizedValue = sanitizeValue(value);
1073 ASSERT(value == sanitizeValue(value) || sanitizeValue(value).isEmpty());
1359 String HTMLInputElement::sanitizeValue(const String& proposedValue) const function in class:blink::HTMLInputElement
1363 return m_inputType->sanitizeValue(proposedValue);
1602 String newValue = sanitizeValue(m_valueIfDirty);
H A DHTMLInputElement.h118 String sanitizeValue(const String&) const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTheme.cpp884 double parsedValue = parseToDoubleForNumberType(input->sanitizeValue(value));

Completed in 125 milliseconds