Home
last modified time | relevance | path

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

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_obj_pos.c39 TEST_ASSERT_EQUAL_INT32(0, lv_obj_get_y(child2)); in test_content_parent_pct_child_pos_1()
45 TEST_ASSERT_EQUAL_INT32(200, lv_obj_get_y(child2)); in test_content_parent_pct_child_pos_1()
51 TEST_ASSERT_EQUAL_INT32(0, lv_obj_get_y(child2)); in test_content_parent_pct_child_pos_1()
/lvgl-latest/src/widgets/tileview/
Dlv_tileview.c88 int32_t ty = lv_obj_get_y(tile_obj); in lv_tileview_set_tile()
112 int32_t y = lv_obj_get_y(tile_obj); in lv_tileview_set_tile_by_index()
179 int32_t y = lv_obj_get_y(tile_obj); in tileview_event_cb()
/lvgl-latest/tests/src/test_cases/
Dtest_anim_timeline.c125 TEST_ASSERT_EQUAL(300, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
130 TEST_ASSERT_EQUAL(0, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
135 TEST_ASSERT_EQUAL(0, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
140 TEST_ASSERT_EQUAL(75, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
145 TEST_ASSERT_EQUAL(150, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
150 TEST_ASSERT_EQUAL(300, lv_obj_get_y(obj)); in test_anim_timeline_progress_2()
/lvgl-latest/env_support/pikascript/
Dpika_lvgl_lv_obj.c109 return lv_obj_get_y(lv_obj); in pika_lvgl_lv_obj_get_y()
/lvgl-latest/src/core/
Dlv_obj_pos.h256 int32_t lv_obj_get_y(const lv_obj_t * obj);
Dlv_obj_pos.c509 int32_t lv_obj_get_y(const lv_obj_t * obj) in lv_obj_get_y() function
530 return lv_obj_get_y(obj) + lv_obj_get_height(obj); in lv_obj_get_y2()
Dlv_obj.c78 .getter = lv_obj_get_y,
/lvgl-latest/src/others/gridnav/
Dlv_gridnav.c343 y_err = lv_obj_get_y(child); in find_chid()
347 y_err = h_max - lv_obj_get_y(child); in find_chid()
/lvgl-latest/src/widgets/roller/
Dlv_roller.c721 lv_anim_set_values(&a, lv_obj_get_y(label), new_y); in refr_position()
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.c589 int32_t y1 = lv_obj_get_y(dropdown->list); in lv_dropdown_open()