Home | History | Annotate | Download | only in lib_json

Lines Matching defs:isNumeric

723     return (isNumeric() && asDouble() == 0.0) ||
738 return isNumeric() || type_ == booleanValue || type_ == nullValue;
740 return isNumeric() || type_ == booleanValue || type_ == nullValue;
742 return isNumeric() || type_ == booleanValue || type_ == stringValue ||
1176 bool Value::isNumeric() const { return isIntegral() || isDouble(); }