Home
last modified time | relevance | path

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

/external/jsoncpp/include/json/
Dvalue.h403 bool isUInt64() const;
671 template <> inline bool Value::is<UInt64>() const { return isUInt64(); }
/external/jsoncpp/src/lib_json/
Djson_value.cpp724 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); in asUInt64()
1319 bool Value::isUInt64() const { in isUInt64() function in Json::Value
/external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h687 bool isUInt64() const;
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h687 bool isUInt64() const;
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
Djson.h687 bool isUInt64() const;
/external/protobuf/conformance/third_party/jsoncpp/
Djson.h737 bool isUInt64() const;
Djsoncpp.cpp3133 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); in asUInt64()
3683 bool Value::isUInt64() const { in isUInt64() function in Json::Value
3705 return isInt64() || isUInt64(); in isIntegral()
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp3101 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); in asUInt64()
3650 bool Value::isUInt64() const { in isUInt64() function in Json::Value
3672 return isInt64() || isUInt64(); in isIntegral()
/external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp3101 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); in asUInt64()
3650 bool Value::isUInt64() const { in isUInt64() function in Json::Value
3672 return isInt64() || isUInt64(); in isIntegral()
/external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/
Djsoncpp.cpp3101 JSON_ASSERT_MESSAGE(isUInt64(), "LargestInt out of UInt64 range"); in asUInt64()
3650 bool Value::isUInt64() const { in isUInt64() function in Json::Value
3672 return isInt64() || isUInt64(); in isIntegral()
/external/jsoncpp/src/test_lib_json/
Dmain.cpp1495 JSONTEST_ASSERT_EQUAL(check.isUInt64_, value.isUInt64()); in checkIs()
1498 JSONTEST_ASSERT_EQUAL(false, value.isUInt64()); in checkIs()
3913 JSONTEST_ASSERT_EQUAL(j.is<Json::UInt64>(), j.isUInt64()); in JSONTEST_FIXTURE_LOCAL()