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

  /external/webkit/Source/WebCore/html/
ColorInputType.h 46 virtual bool typeMismatch() const;
EmailInputType.h 46 virtual bool typeMismatch() const;
URLInputType.h 46 virtual bool typeMismatch() const;
ValidityState.idl 27 readonly attribute boolean typeMismatch;
URLInputType.cpp 56 bool URLInputType::typeMismatch() const
BaseDateAndTimeInputType.h 54 virtual bool typeMismatch() const;
ValidityState.h 48 bool typeMismatch() const;
ColorInputType.cpp 74 bool ColorInputType::typeMismatch() const
EmailInputType.cpp 78 bool EmailInputType::typeMismatch() const
NumberInputType.h 48 virtual bool typeMismatch() const;
ValidityState.cpp 58 if (typeMismatch()) {
127 bool ValidityState::typeMismatch() const
135 return static_cast<HTMLInputElement*>(element)->typeMismatch();
211 bool someError = typeMismatch() || stepMismatch() || rangeUnderflow() || rangeOverflow()
BaseDateAndTimeInputType.cpp 78 bool BaseDateAndTimeInputType::typeMismatch() const
HTMLInputElement.h 50 bool typeMismatch() const;
InputType.h 134 virtual bool typeMismatch() const;
NumberInputType.cpp 89 bool NumberInputType::typeMismatch() const
InputType.cpp 197 bool InputType::typeMismatch() const
HTMLInputElement.cpp 183 bool HTMLInputElement::typeMismatch() const
185 return m_inputType->typeMismatch();
    [all...]
  /libcore/json/src/main/java/org/json/
JSON.java 95 public static JSONException typeMismatch(Object indexOrName, Object actual,
106 public static JSONException typeMismatch(Object actual, String requiredType)
JSONArray.java 91 throw JSON.typeMismatch(object, "JSONArray");
289 throw JSON.typeMismatch(index, object, "boolean");
323 throw JSON.typeMismatch(index, object, "double");
357 throw JSON.typeMismatch(index, object, "int");
391 throw JSON.typeMismatch(index, object, "long");
424 throw JSON.typeMismatch(index, object, "String");
459 throw JSON.typeMismatch(index, object, "JSONArray");
484 throw JSON.typeMismatch(index, object, "JSONObject");
JSONObject.java 158 throw JSON.typeMismatch(object, "JSONObject");
378 throw JSON.typeMismatch(name, object, "boolean");
412 throw JSON.typeMismatch(name, object, "double");
446 throw JSON.typeMismatch(name, object, "int");
480 throw JSON.typeMismatch(name, object, "long");
513 throw JSON.typeMismatch(name, object, "String");
548 throw JSON.typeMismatch(name, object, "JSONArray");
573 throw JSON.typeMismatch(name, object, "JSONObject");

Completed in 131 milliseconds