Searched refs:PRINT_STR (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | builtinhelp.c | 52 mp_obj_print(name_o, PRINT_STR); in mp_help_print_info_about_object() 54 mp_obj_print(value, PRINT_STR); in mp_help_print_info_about_object() 141 mp_obj_print(obj, PRINT_STR); in mp_help_print_obj()
|
A D | objexcept.c | 171 if (k == PRINT_STR || k == PRINT_EXC) { in mp_obj_exception_print() 185 mp_obj_print_helper(print, o->args->items[1], PRINT_STR); in mp_obj_exception_print() 193 mp_obj_print_helper(print, o->args->items[0], PRINT_STR); in mp_obj_exception_print()
|
A D | objtype.c | 238 qstr meth = (kind == PRINT_STR) ? MP_QSTR___str__ : MP_QSTR___repr__; in instance_print() 248 if (member[0] == MP_OBJ_NULL && kind == PRINT_STR) { in instance_print() 258 if (kind != PRINT_STR) { in instance_print() 270 mp_obj_print_helper(print, r, PRINT_STR); in instance_print() 1225 mp_obj_print_helper(print, self->type, PRINT_STR); in super_print() 1227 mp_obj_print_helper(print, self->obj, PRINT_STR); in super_print()
|
A D | modbuiltins.c | 242 mp_obj_print(args[0], PRINT_STR); in mp_builtin_input() 437 mp_obj_print_helper(&print, pos_args[i], PRINT_STR); in mp_builtin_print() 439 mp_obj_print_helper(&mp_plat_print, pos_args[i], PRINT_STR); in mp_builtin_print()
|
A D | objstr.c | 125 if (kind == PRINT_RAW || (!MICROPY_PY_BUILTINS_STR_UNICODE && kind == PRINT_STR && !is_bytes)) { in str_print() 152 mp_obj_print_helper(&print, args[0], PRINT_STR); in mp_obj_str_make_new() 1112 print_kind = PRINT_STR; in mp_obj_str_format_helper() 1572 mp_print_kind_t print_kind = (*str == 'r' ? PRINT_REPR : PRINT_STR); in str_modulo_format() 1573 if (print_kind == PRINT_STR && is_bytes && mp_obj_is_type(arg, &mp_type_bytes)) { in str_modulo_format()
|
A D | objstrunicode.c | 94 if (kind == PRINT_STR) { in uni_print()
|
A D | obj.h | 485 PRINT_STR = 0, enumerator
|
Completed in 19 milliseconds