Home
last modified time | relevance | path

Searched refs:proposedValue (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/dom/
DInputElement.cpp139 String InputElement::sanitizeValue(const InputElement* inputElement, const String& proposedValue) in sanitizeValue() argument
141 return InputElement::sanitizeUserInputValue(inputElement, proposedValue, s_maximumLength); in sanitizeValue()
144 …anitizeUserInputValue(const InputElement* inputElement, const String& proposedValue, int maxLength) in sanitizeUserInputValue() argument
147 return proposedValue; in sanitizeUserInputValue()
149 String string = proposedValue; in sanitizeUserInputValue()
/external/webkit/WebCore/wml/
DWMLInputElement.h82 …virtual String sanitizeValue(const String& proposedValue) const { return constrainValue(proposedVa… in sanitizeValue() argument
DWMLInputElement.cpp321 String WMLInputElement::constrainValue(const String& proposedValue) const in constrainValue()
323 return InputElement::sanitizeUserInputValue(this, proposedValue, m_data.maxLength()); in constrainValue()
/external/webkit/WebCore/html/
DHTMLTextAreaElement.cpp250 String HTMLTextAreaElement::sanitizeUserInputValue(const String& proposedValue, unsigned maxLength) in sanitizeUserInputValue() argument
252 return proposedValue.left(proposedValue.numCharactersInGraphemeClusters(maxLength)); in sanitizeUserInputValue()
DHTMLInputElement.cpp2455 String HTMLInputElement::sanitizeValue(const String& proposedValue) const in sanitizeValue()
2458 return InputElement::sanitizeValue(this, proposedValue); in sanitizeValue()
2459 return proposedValue; in sanitizeValue()