Searched refs:JSON_ASSERT_MESSAGE (Results 1 - 4 of 4) sorted by relevance

/external/jsoncpp/include/json/
H A Dassertions.h29 #define JSON_ASSERT_MESSAGE( condition, message ) if (!( condition )) { JSON_FAIL_MESSAGE( message ) } macro
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp104 JSON_ASSERT_MESSAGE( newString != 0, "Failed to allocate string value buffer" );
168 JSON_ASSERT_MESSAGE( text[0]=='\0' || text[0]=='/', "Comments must start with /");
744 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
747 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
750 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range");
769 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
772 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
775 JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt), "double out of UInt range");
798 JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range");
801 JSON_ASSERT_MESSAGE(InRang
[all...]
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp98 JSON_ASSERT_MESSAGE( newString != 0, "Failed to allocate string value buffer" );
162 JSON_ASSERT_MESSAGE( text[0]=='\0' || text[0]=='/', "Comments must start with /");
738 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
741 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
744 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range");
763 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
766 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
769 JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt), "double out of UInt range");
792 JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range");
795 JSON_ASSERT_MESSAGE(InRang
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp94 JSON_ASSERT_MESSAGE( newString != 0, "Failed to allocate string value buffer" );
158 JSON_ASSERT_MESSAGE( text[0]=='\0' || text[0]=='/', "Comments must start with /");
734 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
737 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
740 JSON_ASSERT_MESSAGE(InRange(value_.real_, minInt, maxInt), "double out of Int range");
759 JSON_ASSERT_MESSAGE(isUInt(), "LargestInt out of UInt range");
762 JSON_ASSERT_MESSAGE(isUInt(), "LargestUInt out of UInt range");
765 JSON_ASSERT_MESSAGE(InRange(value_.real_, 0, maxUInt), "double out of UInt range");
788 JSON_ASSERT_MESSAGE(isInt64(), "LargestUInt out of Int64 range");
791 JSON_ASSERT_MESSAGE(InRang
[all...]

Completed in 1268 milliseconds