Home
last modified time | relevance | path

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

/lvgl-3.7.0/tests/src/test_cases/
Dtest_obj_tree.c11 TEST_ASSERT_EQUAL(lv_obj_get_child_cnt(lv_scr_act()), 0); in test_obj_tree_1()
20 TEST_ASSERT_EQUAL(lv_obj_get_child_cnt(lv_scr_act()), 3); in test_obj_tree_2()
23 TEST_ASSERT_EQUAL(lv_obj_get_child_cnt(lv_scr_act()), 2); in test_obj_tree_2()
26 TEST_ASSERT_EQUAL(lv_obj_get_child_cnt(lv_scr_act()), 0); in test_obj_tree_2()
Dtest_dropdown.c20 TEST_ASSERT_EQUAL(2, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
24 TEST_ASSERT_EQUAL(4, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
27 TEST_ASSERT_EQUAL(4, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
30 TEST_ASSERT_EQUAL(4, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
34 TEST_ASSERT_EQUAL(6, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
36 TEST_ASSERT_EQUAL(6, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
38 TEST_ASSERT_EQUAL(6, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
40 TEST_ASSERT_EQUAL(6, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
43 TEST_ASSERT_EQUAL(4, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
46 TEST_ASSERT_EQUAL(0, lv_obj_get_child_cnt(lv_scr_act())); in test_dropdown_create_delete()
/lvgl-3.7.0/src/core/
Dlv_obj_tree.c149 for(i = lv_obj_get_index(obj); i <= (int32_t)lv_obj_get_child_cnt(old_parent) - 2; i++) { in lv_obj_set_parent()
166 parent->spec_attr->children[lv_obj_get_child_cnt(parent) - 1] = obj; in lv_obj_set_parent()
189 index = lv_obj_get_child_cnt(lv_obj_get_parent(obj)) + index; in lv_obj_move_to_index()
197 if(index >= (int32_t) lv_obj_get_child_cnt(parent)) return; in lv_obj_move_to_index()
313 uint32_t lv_obj_get_child_cnt(const lv_obj_t * obj) in lv_obj_get_child_cnt() function
328 for(i = 0; i < lv_obj_get_child_cnt(parent); i++) { in lv_obj_get_index()
441 for(i = 0; i < lv_obj_get_child_cnt(obj); i++) { in walk_core()
Dlv_obj_tree.h144 uint32_t lv_obj_get_child_cnt(const struct _lv_obj_t * obj);
Dlv_disp.c135 lv_obj_get_child_cnt(disp->screens[0]) == 0 && in lv_disp_set_theme()
136 lv_obj_get_child_cnt(disp->screens[1]) == 0 && in lv_disp_set_theme()
137 lv_obj_get_child_cnt(disp->screens[2]) == 0) { in lv_disp_set_theme()
Dlv_obj_scroll.c140 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_get_scroll_bottom()
181 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_get_scroll_left()
218 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_get_scroll_right()
Dlv_obj_pos.c783 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_move_children_by()
1001 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in calc_content_width()
1085 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in calc_content_height()
1127 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in layout_update_core()
Dlv_refr.c179 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_redraw()
821 int32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_refr_get_top_obj()
866 uint32_t child_cnt = lv_obj_get_child_cnt(parent); in refr_obj_and_children()
Dlv_indev_scroll.c463 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in find_snap_point_x()
518 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in find_snap_point_y()
Dlv_obj.c749 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_event()
849 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_obj_event()
Dlv_obj_style.c683 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in report_style_change_core()
697 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in refresh_children_style()
Dlv_indev.c314 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_indev_search_obj()
/lvgl-3.7.0/examples/widgets/list/
Dlv_example_list_2.c26 for(i = 0; i < lv_obj_get_child_cnt(parent); i++) { in event_handler()
67 const uint32_t pos = lv_obj_get_child_cnt(parent) / 2; in event_handler_center()
102 uint32_t cnt = lv_obj_get_child_cnt(list1); in event_handler_swap()
/lvgl-3.7.0/src/
Dlv_api_map.h57 lv_obj_move_to_index(obj, lv_obj_get_child_cnt(parent) - 1); in lv_obj_move_foreground()
/lvgl-3.7.0/src/extra/widgets/calendar/
Dlv_calendar_header_dropdown.c75 const uint32_t calendar_child_count = lv_obj_get_child_cnt(parent); in lv_calendar_header_dropdown_set_year_list()
89 const uint32_t header_child_count = lv_obj_get_child_cnt(child); in lv_calendar_header_dropdown_set_year_list()
Dlv_calendar.c160 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_calendar_set_showed_date()
/lvgl-3.7.0/src/extra/others/gridnav/
Dlv_gridnav.c116 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in gridnav_event_cb()
270 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in find_chid()
338 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in find_first_focusable()
350 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in find_last_focusable()
/lvgl-3.7.0/src/extra/widgets/tileview/
Dlv_tileview.c102 for(i = 0; i < lv_obj_get_child_cnt(tv); i++) { in lv_obj_set_tile_id()
179 for(i = 0; i < lv_obj_get_child_cnt(obj); i++) { in tileview_event_cb()
/lvgl-3.7.0/src/extra/widgets/list/
Dlv_list.c105 for(i = 0; i < lv_obj_get_child_cnt(btn); i++) { in lv_list_get_btn_text()
/lvgl-3.7.0/examples/scroll/
Dlv_example_scroll_6.c14 uint32_t child_cnt = lv_obj_get_child_cnt(cont); in scroll_event_cb()
/lvgl-3.7.0/src/extra/widgets/tabview/
Dlv_tabview.c76 uint32_t tab_id = lv_obj_get_child_cnt(cont); in lv_tabview_add_tab()
/lvgl-3.7.0/src/extra/layouts/grid/
Dlv_grid.c442 for(ci = 0; ci < lv_obj_get_child_cnt(cont); ci++) { in calc_cols()
511 for(ci = 0; ci < lv_obj_get_child_cnt(cont); ci++) { in calc_rows()
/lvgl-3.7.0/docs/widgets/
Dobj.md58 for(i = 0; i < lv_obj_get_child_cnt(parent); i++) {
/lvgl-3.7.0/demos/widgets/
Dlv_demo_widgets.c1044 for(i = 0; i < lv_obj_get_child_cnt(obj); i++) { in color_changer_anim_cb()
/lvgl-3.7.0/docs/
DCHANGELOG.md995 - perf(obj) remove lv_obj_get_child_cnt from cycle limit checks [`ebb9ce9`](https://github.com/lvgl…