/lvgl-3.7.0/tests/src/test_cases/ |
D | test_obj_tree.c | 11 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()
|
D | test_dropdown.c | 20 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/ |
D | lv_obj_tree.c | 149 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()
|
D | lv_obj_tree.h | 144 uint32_t lv_obj_get_child_cnt(const struct _lv_obj_t * obj);
|
D | lv_disp.c | 135 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()
|
D | lv_obj_scroll.c | 140 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()
|
D | lv_obj_pos.c | 783 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()
|
D | lv_refr.c | 179 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()
|
D | lv_indev_scroll.c | 463 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()
|
D | lv_obj.c | 749 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()
|
D | lv_obj_style.c | 683 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()
|
D | lv_indev.c | 314 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_indev_search_obj()
|
/lvgl-3.7.0/examples/widgets/list/ |
D | lv_example_list_2.c | 26 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/ |
D | lv_api_map.h | 57 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/ |
D | lv_calendar_header_dropdown.c | 75 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()
|
D | lv_calendar.c | 160 uint32_t child_cnt = lv_obj_get_child_cnt(obj); in lv_calendar_set_showed_date()
|
/lvgl-3.7.0/src/extra/others/gridnav/ |
D | lv_gridnav.c | 116 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/ |
D | lv_tileview.c | 102 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/ |
D | lv_list.c | 105 for(i = 0; i < lv_obj_get_child_cnt(btn); i++) { in lv_list_get_btn_text()
|
/lvgl-3.7.0/examples/scroll/ |
D | lv_example_scroll_6.c | 14 uint32_t child_cnt = lv_obj_get_child_cnt(cont); in scroll_event_cb()
|
/lvgl-3.7.0/src/extra/widgets/tabview/ |
D | lv_tabview.c | 76 uint32_t tab_id = lv_obj_get_child_cnt(cont); in lv_tabview_add_tab()
|
/lvgl-3.7.0/src/extra/layouts/grid/ |
D | lv_grid.c | 442 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/ |
D | obj.md | 58 for(i = 0; i < lv_obj_get_child_cnt(parent); i++) {
|
/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.c | 1044 for(i = 0; i < lv_obj_get_child_cnt(obj); i++) { in color_changer_anim_cb()
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 995 - perf(obj) remove lv_obj_get_child_cnt from cycle limit checks [`ebb9ce9`](https://github.com/lvgl…
|