Searched refs:value_act (Results 1 – 2 of 2) sorted by relevance
/lvgl-2.7.6/src/lv_core/ |
D | lv_style.c | 826 lv_style_int_t value_act = 0; in _lv_style_list_get_int() local 831 int16_t weight_act = _lv_style_get_int(class, prop, &value_act); in _lv_style_list_get_int() 835 *res = value_act; in _lv_style_list_get_int() 839 *res = value_act; in _lv_style_list_get_int() 845 *res = value_act; in _lv_style_list_get_int() 878 lv_color_t value_act; in _lv_style_list_get_color() local 879 value_act.full = 0; in _lv_style_list_get_color() 884 int16_t weight_act = _lv_style_get_color(class, prop, &value_act); in _lv_style_list_get_color() 887 *res = value_act; in _lv_style_list_get_color() 891 *res = value_act; in _lv_style_list_get_color() [all …]
|
D | lv_obj.c | 2581 lv_style_int_t value_act; in _lv_obj_get_style_int() local 2658 res = _lv_style_list_get_int(list, prop, &value_act); in _lv_obj_get_style_int() 2659 if(res == LV_RES_OK) return value_act; in _lv_obj_get_style_int() 2712 lv_color_t value_act; in _lv_obj_get_style_color() local 2721 res = _lv_style_list_get_color(list, prop, &value_act); in _lv_obj_get_style_color() 2722 if(res == LV_RES_OK) return value_act; in _lv_obj_get_style_color() 2768 lv_opa_t value_act; in _lv_obj_get_style_opa() local 2799 res = _lv_style_list_get_opa(list, prop, &value_act); in _lv_obj_get_style_opa() 2800 if(res == LV_RES_OK) return value_act; in _lv_obj_get_style_opa() 2847 const void * value_act; in _lv_obj_get_style_ptr() local [all …]
|