LargestUInt       136 third_party/jsoncpp/overrides/include/json/value.h       typedef Json::LargestUInt LargestUInt;
LargestUInt       145 third_party/jsoncpp/overrides/include/json/value.h       static const LargestUInt maxLargestUInt;
LargestUInt       275 third_party/jsoncpp/overrides/include/json/value.h       LargestUInt asLargestUInt() const;
LargestUInt       487 third_party/jsoncpp/overrides/include/json/value.h          LargestUInt uint_;
LargestUInt       600 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt) 
LargestUInt       602 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    Value::LargestUInt threshold = maxIntegerValue / 10;
LargestUInt       603 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    Value::LargestUInt value = 0;
LargestUInt       627 third_party/jsoncpp/overrides/src/lib_json/json_reader.cpp    else if ( value <= Value::LargestUInt(Value::maxInt) )
LargestUInt        52 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp const LargestInt Value::minLargestInt = LargestInt( ~(LargestUInt(-1)/2) );
LargestUInt        53 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp const LargestInt Value::maxLargestInt = LargestInt( LargestUInt(-1)/2 );
LargestUInt        54 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
LargestUInt       850 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp LargestUInt 
LargestUInt      1425 third_party/jsoncpp/overrides/src/lib_json/json_value.cpp       return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt);