Home
last modified time | relevance | path

Searched refs:style_cnt (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/src/core/
Dlv_obj_style.c82 for(i = 0; i < obj->style_cnt; i++) { in lv_obj_add_style()
91 obj->style_cnt++; in lv_obj_add_style()
92 obj->styles = lv_mem_realloc(obj->styles, obj->style_cnt * sizeof(_lv_obj_style_t)); in lv_obj_add_style()
95 for(j = obj->style_cnt - 1; j > i ; j--) { in lv_obj_add_style()
115 while(i < obj->style_cnt) { in lv_obj_remove_style()
137 for(j = i; j < (uint32_t)obj->style_cnt - 1 ; j++) { in lv_obj_remove_style()
141 obj->style_cnt--; in lv_obj_remove_style()
142 obj->styles = lv_mem_realloc(obj->styles, obj->style_cnt * sizeof(_lv_obj_style_t)); in lv_obj_remove_style()
290 for(i = 0; i < obj->style_cnt; i++) { in lv_obj_get_local_style_prop()
306 for(i = 0; i < obj->style_cnt; i++) { in lv_obj_remove_local_style_prop()
[all …]
Dlv_obj.h188 uint16_t style_cnt : 6; member
Dlv_obj.c900 for(i = 0; i < obj->style_cnt && tsi < STYLE_TRANSITION_MAX; i++) { in lv_obj_set_state()