Home
last modified time | relevance | path

Searched defs:chk (Results 1 – 3 of 3) sorted by relevance

/lvgl-latest/examples/widgets/table/
Dlv_example_table_2.c15 bool chk = lv_table_has_cell_ctrl(obj, base_dsc->id1, 0, LV_TABLE_CELL_CTRL_CUSTOM_1); in draw_event_cb() local
54 bool chk = lv_table_has_cell_ctrl(obj, row, 0, LV_TABLE_CELL_CTRL_CUSTOM_1); in change_event_cb() local
/lvgl-latest/src/widgets/switch/
Dlv_switch.c224 bool chk = lv_obj_get_state(obj) & LV_STATE_CHECKED; in draw_main() local
244 bool chk = lv_obj_get_state(obj) & LV_STATE_CHECKED; in draw_main() local
304 bool chk = lv_obj_get_state(obj) & LV_STATE_CHECKED; in lv_switch_trigger_anim() local
/lvgl-latest/examples/widgets/menu/
Dlv_example_menu_5.c191 static lv_obj_t * create_switch(lv_obj_t * parent, const char * icon, const char * txt, bool chk) in create_switch()