HomeSort by relevance Sort by last modified time
    Searched refs:LargestUInt (Results 1 - 10 of 10) sorted by null

  /external/jsoncpp/include/json/
config.h 95 typedef unsigned int LargestUInt;
107 typedef UInt64 LargestUInt;
writer.h 198 std::string JSON_API valueToString(LargestUInt value);
value.h 133 typedef Json::LargestUInt LargestUInt;
142 static const LargestUInt maxLargestUInt;
271 LargestUInt asLargestUInt() const;
480 LargestUInt uint_;
  /external/jsoncpp/src/lib_json/
json_tool.h 52 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
63 static inline void uintToString(LargestUInt value, char*& current) {
json_value.cpp 52 const LargestInt Value::minLargestInt = LargestInt(~(LargestUInt(-1) / 2));
53 const LargestInt Value::maxLargestInt = LargestInt(LargestUInt(-1) / 2);
54 const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
559 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
581 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
604 JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range");
650 LargestUInt Value::asLargestUInt() const {
1114 return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt)
    [all...]
json_reader.cpp 523 Value::LargestUInt maxIntegerValue =
524 isNegative ? Value::LargestUInt(-Value::minLargestInt)
526 Value::LargestUInt threshold = maxIntegerValue / 10;
527 Value::LargestUInt value = 0;
549 else if (value <= Value::LargestUInt(Value::maxInt))
json_writer.cpp 45 uintToString(LargestUInt(value), current);
52 std::string valueToString(LargestUInt value) {
67 return valueToString(LargestUInt(value));
  /external/protobuf/conformance/third_party/jsoncpp/
json.h 232 typedef unsigned int LargestUInt;
244 typedef UInt64 LargestUInt;
560 typedef Json::LargestUInt LargestUInt;
570 static const LargestUInt maxLargestUInt;
727 LargestUInt asLargestUInt() const;
973 LargestUInt uint_;
    [all...]
jsoncpp.cpp 138 uintToStringBufferSize = 3 * sizeof(LargestUInt) + 1
149 static inline void uintToString(LargestUInt value, char*& current) {
759 Value::LargestUInt maxIntegerValue =
760 isNegative ? Value::LargestUInt(Value::maxLargestInt) + 1
762 Value::LargestUInt threshold = maxIntegerValue / 10;
763 Value::LargestUInt value = 0;
785 else if (value <= Value::LargestUInt(Value::maxInt))
    [all...]
  /external/jsoncpp/src/test_lib_json/
main.cpp 264 JSONTEST_ASSERT_EQUAL(Json::LargestUInt(0), null_.asLargestUInt());
    [all...]

Completed in 880 milliseconds