Searched refs:mp_call_function_1 (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | runtime_utils.c | 33 mp_obj_t ret = mp_call_function_1(fun, arg); in mp_call_function_1_protected()
|
A D | objlist.c | 298 …mp_obj_t v = key_fn == MP_OBJ_NULL ? tail[0] : mp_call_function_1(key_fn, tail[0]); // get pivot u… in mp_quicksort() 301 … && mp_binary_op(MP_BINARY_OP_LESS, key_fn == MP_OBJ_NULL ? h[0] : mp_call_function_1(key_fn, h[0]… in mp_quicksort() 303 … mp_binary_op(MP_BINARY_OP_LESS, v, key_fn == MP_OBJ_NULL ? t[0] : mp_call_function_1(key_fn, t[0]… in mp_quicksort()
|
A D | objmodule.c | 72 dest[0] = mp_call_function_1(elem->value, MP_OBJ_NEW_QSTR(attr)); in module_attr()
|
A D | runtime.h | 116 mp_obj_t mp_call_function_1(mp_obj_t fun, mp_obj_t arg);
|
A D | modbuiltins.c | 278 mp_obj_t key = key_fn == MP_OBJ_NULL ? item : mp_call_function_1(key_fn, item); in mp_builtin_min_max() 298 mp_obj_t key = key_fn == MP_OBJ_NULL ? args[i] : mp_call_function_1(key_fn, args[i]); in mp_builtin_min_max()
|
A D | objtype.c | 269 mp_obj_t r = mp_call_function_1(member[0], self_in); in instance_print() 420 mp_obj_t val = mp_call_function_1(member[0], self_in); in instance_unary_op()
|
A D | runtime.c | 632 mp_obj_t mp_call_function_1(mp_obj_t fun, mp_obj_t arg) { in mp_call_function_1() function
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | mpirq.c | 78 mp_call_function_1(self->handler, self->parent); in mp_irq_handler()
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | modure.c | 313 …const char *repl = mp_obj_str_get_str((mp_obj_is_callable(replace) ? mp_call_function_1(replace, M… in re_sub_helper()
|
Completed in 15 milliseconds