Home
last modified time | relevance | path

Searched refs:maxInt (Results 1 – 6 of 6) sorted by relevance

/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_value.cpp118 if (length >= static_cast<size_t>(Value::maxInt)) in duplicateStringValue()
119 length = Value::maxInt - 1; in duplicateStringValue()
137 JSON_ASSERT_MESSAGE(length <= static_cast<unsigned>(Value::maxInt) - in duplicateAndPrefixStringValue()
663 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), in asInt()
836 (type() == realValue && InRange(value_.real_, minInt, maxInt)) || in isConvertibleTo()
1261 return value_.int_ >= minInt && value_.int_ <= maxInt; in isInt()
1266 return value_.uint_ <= UInt(maxInt); in isInt()
1268 return value_.real_ >= minInt && value_.real_ <= maxInt && in isInt()
A Djson_reader.cpp583 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
/AliOS-Things-master/components/oss/src/external/json/
A Djsoncpp.cpp824 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
1830 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
2540 const Int Value::maxInt = Int(UInt(-1) / 2); member in AlibabaCloud::OSS::Json::Value
2590 if (length >= static_cast<size_t>(Value::maxInt)) in duplicateStringValue()
2591 length = Value::maxInt - 1; in duplicateStringValue()
2612 JSON_ASSERT_MESSAGE(length <= static_cast<unsigned>(Value::maxInt) - sizeof(unsigned) - 1U, in duplicateAndPrefixStringValue()
3245 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), in asInt()
3416 (type_ == realValue && InRange(value_.real_, minInt, maxInt)) || in isConvertibleTo()
3814 return value_.int_ >= minInt && value_.int_ <= maxInt; in isInt()
3819 return value_.uint_ <= UInt(maxInt); in isInt()
[all …]
A Djson.h672 static const Int maxInt; variable
/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h233 static constexpr Int maxInt = Int(UInt(-1) / 2); variable
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/
A Dmain.cpp32 #define kint32max Json::Value::maxInt
72 Json::Value smallUnsignedInteger_{Json::Value::UInt(Json::Value::maxInt)};

Completed in 39 milliseconds