Home | History | Annotate | Download | only in lib_json

Lines Matching defs:maxInt

41 const Int Value::maxInt = Int( UInt(-1)/2 );
100 if (length >= (unsigned)Value::maxInt)
101 length = Value::maxInt - 1;
750 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range");
947 || (type_ == realValue && InRange(value_.real_, minInt, maxInt))
1405 return value_.int_ >= minInt && value_.int_ <= maxInt;
1407 return value_.uint_ <= UInt(maxInt);
1410 value_.real_ <= maxInt &&