Home
last modified time | relevance | path

Searched refs:LargestUInt (Results 1 – 11 of 11) sorted by relevance

/AliOS-Things-master/components/jsoncpp/include/json/
A Dvalue.h207 using LargestUInt = Json::LargestUInt; variable
224 LargestInt(~(LargestUInt(-1) / 2));
226 static constexpr LargestInt maxLargestInt = LargestInt(LargestUInt(-1) / 2);
228 static constexpr LargestUInt maxLargestUInt = LargestUInt(-1);
393 LargestUInt asLargestUInt() const;
620 LargestUInt uint_;
A Dconfig.h112 using LargestUInt = unsigned int; variable
124 using LargestUInt = UInt64; variable
A Dwriter.h348 String JSON_API valueToString(LargestUInt value);
/AliOS-Things-master/components/jsoncpp/src/lib_json/
A Djson_tool.h70 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
81 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()
A Djson_reader.cpp557 Value::LargestUInt maxIntegerValue = in decodeNumber()
558 isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1 in decodeNumber()
560 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
561 Value::LargestUInt value = 0; in decodeNumber()
583 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
1583 static constexpr Value::LargestUInt positive_threshold = in decodeNumber()
1593 Value::LargestUInt(-(Value::minLargestInt / 10)); in decodeNumber()
1597 const Value::LargestUInt threshold = in decodeNumber()
1602 Value::LargestUInt value = 0; in decodeNumber()
1627 } else if (value <= Value::LargestUInt(Value::maxLargestInt)) { in decodeNumber()
A Djson_writer.cpp98 uintToString(LargestUInt(Value::maxLargestInt) + 1, current); in valueToString()
101 uintToString(LargestUInt(-value), current); in valueToString()
104 uintToString(LargestUInt(value), current); in valueToString()
110 String valueToString(LargestUInt value) { in valueToString()
122 String valueToString(UInt value) { return valueToString(LargestUInt(value)); } in valueToString()
A Djson_value.cpp751 LargestUInt Value::asLargestUInt() const { in asLargestUInt()
1280 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); in isUInt()
/AliOS-Things-master/components/oss/src/external/json/
A Djson-forwards.h245 typedef unsigned int LargestUInt; typedef
257 typedef UInt64 LargestUInt; typedef
A Djson.h279 typedef unsigned int LargestUInt; typedef
291 typedef UInt64 LargestUInt; typedef
652 typedef Json::LargestUInt LargestUInt; typedef
667 static const LargestUInt maxLargestUInt;
838 LargestUInt asLargestUInt() const;
1088 LargestUInt uint_;
2137 JSONCPP_STRING JSON_API valueToString(LargestUInt value);
A Djsoncpp.cpp798 Value::LargestUInt maxIntegerValue = in decodeNumber()
802 Value::LargestUInt value = 0; in decodeNumber()
1806 Value::LargestUInt maxIntegerValue = in decodeNumber()
1810 Value::LargestUInt value = 0; in decodeNumber()
2553 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
3333 LargestUInt Value::asLargestUInt() const { in asLargestUInt()
3833 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); in isUInt()
4275 uintToString(LargestUInt(-value), current); in valueToString()
4278 uintToString(LargestUInt(value), current); in valueToString()
4284 JSONCPP_STRING valueToString(LargestUInt value) { in valueToString()
[all …]
/AliOS-Things-master/components/jsoncpp/src/test_lib_json/
A Dmain.cpp456 JSONTEST_ASSERT_EQUAL(Json::LargestUInt(0), null_.asLargestUInt()); in JSONTEST_FIXTURE_LOCAL()
3923 EqEval(Json::LargestUInt(64), in JSONTEST_FIXTURE_LOCAL()

Completed in 39 milliseconds