Lines Matching refs:j
129 uint32_t j; in lv_obj_add_style() local
130 for(j = obj->style_cnt - 1; j > i ; j--) { in lv_obj_add_style()
131 obj->styles[j] = obj->styles[j - 1]; in lv_obj_add_style()
237 uint32_t j; in lv_obj_remove_style() local
238 for(j = i; j < (uint32_t)obj->style_cnt - 1 ; j++) { in lv_obj_remove_style()
239 obj->styles[j] = obj->styles[j + 1]; in lv_obj_remove_style()
1007 uint32_t j; in full_cache_refresh() local
1010 for(j = 0; props[j].prop != LV_STYLE_PROP_INV; j++) { in full_cache_refresh()
1011 obj->style_main_prop_is_set |= STYLE_PROP_SHIFTED(props[j].prop); in full_cache_refresh()
1016 for(j = 0; j < style->prop_cnt; j++) { in full_cache_refresh()
1017 obj->style_main_prop_is_set |= STYLE_PROP_SHIFTED(props[j]); in full_cache_refresh()
1027 uint32_t j; in full_cache_refresh() local
1030 for(j = 0; props[j].prop != LV_STYLE_PROP_INV; j++) { in full_cache_refresh()
1031 obj->style_other_prop_is_set |= STYLE_PROP_SHIFTED(props[j].prop); in full_cache_refresh()
1036 for(j = 0; j < style->prop_cnt; j++) { in full_cache_refresh()
1037 obj->style_other_prop_is_set |= STYLE_PROP_SHIFTED(props[j]); in full_cache_refresh()