Home
last modified time | relevance | path

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

/external/jsoncpp/include/json/
Dconfig.h95 typedef unsigned int LargestUInt; typedef
107 typedef UInt64 LargestUInt; typedef
Dvalue.h133 typedef Json::LargestUInt LargestUInt; typedef
142 static const LargestUInt maxLargestUInt;
271 LargestUInt asLargestUInt() const;
480 LargestUInt uint_;
Dwriter.h198 std::string JSON_API valueToString(LargestUInt value);
/external/jsoncpp/src/lib_json/
Djson_tool.h52 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
63 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()
Djson_reader.cpp523 Value::LargestUInt maxIntegerValue = in decodeNumber()
524 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()
526 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
527 Value::LargestUInt value = 0; in decodeNumber()
549 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
Djson_value.cpp52 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));
53 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);
54 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
650 LargestUInt Value::asLargestUInt() const { in asLargestUInt()
1114 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt); in isUInt()
Djson_writer.cpp45 uintToString(LargestUInt(value), current); in valueToString()
52 std::string valueToString(LargestUInt value) { in valueToString()
67 return valueToString(LargestUInt(value)); in valueToString()
/external/protobuf/conformance/third_party/jsoncpp/
Djson.h232 typedef unsigned int LargestUInt; typedef
244 typedef UInt64 LargestUInt; typedef
560 typedef Json::LargestUInt LargestUInt; typedef
570 static const LargestUInt maxLargestUInt;
727 LargestUInt asLargestUInt() const;
973 LargestUInt uint_;
1982 std::string JSON_API valueToString(LargestUInt value);
Djsoncpp.cpp138 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
149 static inline void uintToString(LargestUInt value, char*& current) { in uintToString()
759 Value::LargestUInt maxIntegerValue = in decodeNumber()
760 isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1 in decodeNumber()
762 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
763 Value::LargestUInt value = 0; in decodeNumber()
785 else if (value <= Value::LargestUInt(Value::maxInt)) in decodeNumber()
1741 Value::LargestUInt maxIntegerValue = in decodeNumber()
1742 isNegative ? Value::LargestUInt(-Value::minLargestInt) in decodeNumber()
1744 Value::LargestUInt threshold = maxIntegerValue / 10; in decodeNumber()
[all …]
/external/jsoncpp/
DNEWS.txt98 Types Json::LargestInt and Json::LargestUInt have been added. They are
110 the integer as a LargestInt/LargestUInt respectively. Those functions
/external/jsoncpp/src/test_lib_json/
Dmain.cpp264 JSONTEST_ASSERT_EQUAL(Json::LargestUInt(0), null_.asLargestUInt()); in JSONTEST_FIXTURE()