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

  /external/webkit/WebCore/wml/
WMLInputElement.h 82 virtual String sanitizeValue(const String& proposedValue) const { return constrainValue(proposedValue); }
WMLInputElement.cpp 321 String WMLInputElement::constrainValue(const String& proposedValue) const
323 return InputElement::sanitizeUserInputValue(this, proposedValue, m_data.maxLength());
  /external/webkit/WebCore/dom/
InputElement.cpp 139 String InputElement::sanitizeValue(const InputElement* inputElement, const String& proposedValue)
141 return InputElement::sanitizeUserInputValue(inputElement, proposedValue, s_maximumLength);
144 String InputElement::sanitizeUserInputValue(const InputElement* inputElement, const String& proposedValue, int maxLength)
147 return proposedValue;
149 String string = proposedValue;
  /external/webkit/WebCore/html/
HTMLTextAreaElement.cpp 250 String HTMLTextAreaElement::sanitizeUserInputValue(const String& proposedValue, unsigned maxLength)
252 return proposedValue.left(proposedValue.numCharactersInGraphemeClusters(maxLength));
HTMLInputElement.cpp     [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 544 milliseconds