Searched refs:mp_rom_error_text_t (Results 1 – 11 of 11) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | runtime.h | 180 NORETURN void mp_raise_msg(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg); 181 NORETURN void mp_raise_msg_varg(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, ...); 182 NORETURN void mp_raise_ValueError(mp_rom_error_text_t msg); 183 NORETURN void mp_raise_TypeError(mp_rom_error_text_t msg); 184 NORETURN void mp_raise_NotImplementedError(mp_rom_error_text_t msg);
|
A D | misc.h | 288 } *mp_rom_error_text_t; typedef 314 typedef const char *mp_rom_error_text_t; typedef 321 #define MP_ERROR_TEXT(x) (mp_rom_error_text_t)MP_COMPRESSED_ROM_TEXT(x)
|
A D | qstr.h | 77 void mp_decompress_rom_string(byte *dst, mp_rom_error_text_t src);
|
A D | objexcept.c | 144 mp_decompress_rom_string(buf, (mp_rom_error_text_t)o_str->data); in decompress_error_text_maybe() 388 mp_obj_t mp_obj_new_exception_msg(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg) { in mp_obj_new_exception_msg() 457 mp_obj_t mp_obj_new_exception_msg_varg(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, ...)… in mp_obj_new_exception_msg_varg() 465 mp_obj_t mp_obj_new_exception_msg_vlist(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, va_… in mp_obj_new_exception_msg_vlist()
|
A D | runtime.c | 1544 NORETURN void mp_raise_msg(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg) { in mp_raise_msg() 1552 NORETURN void mp_raise_msg_varg(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, ...) { in mp_raise_msg_varg() 1560 NORETURN void mp_raise_ValueError(mp_rom_error_text_t msg) { in mp_raise_ValueError() 1564 NORETURN void mp_raise_TypeError(mp_rom_error_text_t msg) { in mp_raise_TypeError() 1568 NORETURN void mp_raise_NotImplementedError(mp_rom_error_text_t msg) { in mp_raise_NotImplementedError()
|
A D | nativeglue.h | 148 void (*raise_msg)(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg);
|
A D | obj.h | 747 mp_obj_t mp_obj_new_exception_msg(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg); 748 mp_obj_t mp_obj_new_exception_msg_varg(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, ...)… 751 mp_obj_t mp_obj_new_exception_msg_vlist(const mp_obj_type_t *exc_type, mp_rom_error_text_t fmt, va_…
|
A D | qstr.c | 352 void mp_decompress_rom_string(byte *dst, const mp_rom_error_text_t src_chr) { in mp_decompress_rom_string()
|
A D | emitinlinextensa.c | 46 STATIC void emit_inline_xtensa_error_msg(emit_inline_asm_t *emit, mp_rom_error_text_t msg) { in emit_inline_xtensa_error_msg()
|
A D | emitinlinethumb.c | 62 STATIC void emit_inline_thumb_error_msg(emit_inline_asm_t *emit, mp_rom_error_text_t msg) { in emit_inline_thumb_error_msg()
|
A D | compile.c | 200 STATIC void compile_syntax_error(compiler_t *comp, mp_parse_node_t pn, mp_rom_error_text_t msg) { in compile_syntax_error()
|
Completed in 27 milliseconds