Home
last modified time | relevance | path

Searched refs:msg_p (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-exceptions.c225 const lit_utf8_byte_t *msg_p) /**< error message */ in ecma_raise_standard_error() argument
229 if (msg_p != NULL) in ecma_raise_standard_error()
231 ecma_string_t *error_msg_p = ecma_new_ecma_string_from_utf8 (msg_p, in ecma_raise_standard_error()
232 lit_zt_utf8_string_size (msg_p)); in ecma_raise_standard_error()
340 ecma_raise_common_error (const char *msg_p) /**< error message */ in ecma_raise_common_error() argument
342 return ecma_raise_standard_error (ECMA_ERROR_COMMON, (const lit_utf8_byte_t *) msg_p); in ecma_raise_common_error()
354 ecma_raise_range_error (const char *msg_p) /**< error message */ in ecma_raise_range_error() argument
356 return ecma_raise_standard_error (ECMA_ERROR_RANGE, (const lit_utf8_byte_t *) msg_p); in ecma_raise_range_error()
368 ecma_raise_reference_error (const char *msg_p) /**< error message */ in ecma_raise_reference_error() argument
370 return ecma_raise_standard_error (ECMA_ERROR_REFERENCE, (const lit_utf8_byte_t *) msg_p); in ecma_raise_reference_error()
[all …]
Decma-exceptions.h57 …t ecma_raise_standard_error_with_format (ecma_standard_error_t error_type, const char *msg_p, ...);
59 ecma_value_t ecma_raise_common_error (const char *msg_p);
60 ecma_value_t ecma_raise_range_error (const char *msg_p);
61 ecma_value_t ecma_raise_reference_error (const char *msg_p);
62 ecma_value_t ecma_raise_syntax_error (const char *msg_p);
63 ecma_value_t ecma_raise_type_error (const char *msg_p);
64 ecma_value_t ecma_raise_uri_error (const char *msg_p);