Lines Matching defs:message
184 #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
187 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
190 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
192 #define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__))
196 #define JSONCPP_DEPRECATED(message)
1244 std::string message;
1303 * \return Formatted error message with the list of errors with their location
1315 * \return Formatted error message with the list of errors with their location
1332 /** \brief Add a semantic error message.
1334 * \param message The error message.
1338 bool pushError(const Value& value, const std::string& message);
1340 /** \brief Add a semantic error message with extra context.
1342 * \param message The error message.
1347 bool pushError(const Value& value, const std::string& message, const Value& extra);
1414 bool addError(const std::string& message, Token& token, Location extra = 0);
1416 bool addErrorAndRecover(const std::string& message,
1979 # define JSON_FAIL_MESSAGE(message) \
1981 std::ostringstream oss; oss << message; \
1990 // The call to assert() will show the failure message in debug builds. In
1992 # define JSON_FAIL_MESSAGE(message) \
1994 std::ostringstream oss; oss << message; \
2002 #define JSON_ASSERT_MESSAGE(condition, message) \
2004 JSON_FAIL_MESSAGE(message); \