Home | History | Annotate | Download | only in lib_json

Lines Matching defs:maxUInt

42 const UInt Value::maxUInt = UInt(-1);
584 JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt),
735 (type_ == realValue && InRange(value_.real_, 0, maxUInt)) ||
1114 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt);
1116 return value_.uint_ <= maxUInt;
1118 return value_.real_ >= 0 && value_.real_ <= maxUInt &&