Searched refs:MP_MAP_LOOKUP_REMOVE_IF_FOUND (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | map.c | 163 if (MP_UNLIKELY(lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND)) { in mp_map_lookup() 246 if (lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND) { in mp_map_lookup() 349 if (lookup_kind & MP_MAP_LOOKUP_REMOVE_IF_FOUND) { in mp_set_lookup()
|
A D | objobject.c | 91 if (mp_map_lookup(&self->members, attr, MP_MAP_LOOKUP_REMOVE_IF_FOUND) == NULL) { in object___delattr__()
|
A D | objdict.c | 304 if (lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND) { in dict_get_helper() 317 if (lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND) { in dict_get_helper() 330 return dict_get_helper(n_args, args, MP_MAP_LOOKUP_REMOVE_IF_FOUND); in dict_pop() 642 dict_get_helper(2, args, MP_MAP_LOOKUP_REMOVE_IF_FOUND); in mp_obj_dict_delete()
|
A D | objset.c | 189 mp_set_lookup(&self->set, item, MP_MAP_LOOKUP_REMOVE_IF_FOUND); in set_discard() 212 mp_set_lookup(self_set, next, MP_MAP_LOOKUP_REMOVE_IF_FOUND); in set_diff_int() 374 if (mp_set_lookup(&self->set, item, MP_MAP_LOOKUP_REMOVE_IF_FOUND) == MP_OBJ_NULL) { in set_remove()
|
A D | objtype.c | 787 …elem_t *elem = mp_map_lookup(&self->members, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP_REMOVE_IF_FOUND); in mp_obj_instance_store_attr() 1067 …map_elem_t *elem = mp_map_lookup(locals_map, MP_OBJ_NEW_QSTR(attr), MP_MAP_LOOKUP_REMOVE_IF_FOUND); in type_attr()
|
A D | obj.h | 421 MP_MAP_LOOKUP_REMOVE_IF_FOUND = 2, enumerator
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | moduselect.c | 206 mp_map_lookup(&self->poll_map, mp_obj_id(obj_in), MP_MAP_LOOKUP_REMOVE_IF_FOUND); in poll_unregister()
|
Completed in 17 milliseconds