Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/extra/others/gridnav/
Dlv_gridnav.c43 static lv_obj_t * find_chid(lv_obj_t * obj, lv_obj_t * start_child, find_mode_t mode);
133 guess = find_chid(obj, dsc->focused_obj, FIND_RIGHT); in gridnav_event_cb()
136 guess = find_chid(obj, dsc->focused_obj, FIND_NEXT_ROW_FIRST_ITEM); in gridnav_event_cb()
153 guess = find_chid(obj, dsc->focused_obj, FIND_LEFT); in gridnav_event_cb()
156 guess = find_chid(obj, dsc->focused_obj, FIND_PREV_ROW_LAST_ITEM); in gridnav_event_cb()
173 guess = find_chid(obj, dsc->focused_obj, FIND_BOTTOM); in gridnav_event_cb()
176 guess = find_chid(obj, dsc->focused_obj, FIND_FIRST_ROW); in gridnav_event_cb()
192 guess = find_chid(obj, dsc->focused_obj, FIND_TOP); in gridnav_event_cb()
195 guess = find_chid(obj, dsc->focused_obj, FIND_LAST_ROW); in gridnav_event_cb()
266 static lv_obj_t * find_chid(lv_obj_t * obj, lv_obj_t * start_child, find_mode_t mode) in find_chid() function