Lines Matching full:id
293 lv_obj_t * lv_obj_get_child(const lv_obj_t * obj, int32_t id) in lv_obj_get_child() argument
300 if(id < 0) { in lv_obj_get_child()
301 id = obj->spec_attr->child_cnt + id; in lv_obj_get_child()
302 if(id < 0) return NULL; in lv_obj_get_child()
303 idu = (uint32_t) id; in lv_obj_get_child()
306 idu = id; in lv_obj_get_child()
310 else return obj->spec_attr->children[id]; in lv_obj_get_child()
396 uint32_t id = i; in obj_del_core() local
397 for(i = id; i < disp->screen_cnt - 1; i++) { in obj_del_core()
405 uint32_t id = lv_obj_get_index(obj); in obj_del_core() local
407 for(i = id; i < obj->parent->spec_attr->child_cnt - 1; i++) { in obj_del_core()