HomeSort by relevance Sort by last modified time
    Searched defs:maxUInt (Results 1 - 4 of 4) sorted by null

  /external/jsoncpp/include/json/
value.h 91 * - unsigned integer (range: 0 - Value::maxUInt)
149 static const UInt maxUInt;
  /external/jsoncpp/src/lib_json/
json_value.cpp 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 &&
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
json.h 517 * - unsigned integer (range: 0 - Value::maxUInt)
577 static const UInt maxUInt;
    [all...]
jsoncpp.cpp     [all...]

Completed in 130 milliseconds