Searched refs:maxInt (Results 1 – 2 of 2) sorted by relevance
785 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()1765 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()2454 const Int Value::maxInt = Int(UInt(-1) / 2); member in Json::Value2500 if (length >= (size_t)Value::maxInt) in duplicateStringValue()2501 length = Value::maxInt - 1; in duplicateStringValue()2522 JSON_ASSERT_MESSAGE(length <= (unsigned)Value::maxInt - sizeof(unsigned) - 1U, in duplicateAndPrefixStringValue()3072 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), in asInt()3242 (type_ == realValue && InRange(value_.real_, minInt, maxInt)) || in isConvertibleTo()3636 return value_.int_ >= minInt && value_.int_ <= maxInt; in isInt()3638 return value_.uint_ <= UInt(maxInt); in isInt()[all …]
575 static const Int maxInt; variable