Home
last modified time | relevance | path

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

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_spinbox.c83 TEST_ASSERT_EQUAL(1, lv_spinbox_get_step(spinbox_zero_min_range)); in test_spinbox_position_selection()
87 TEST_ASSERT_EQUAL(10, lv_spinbox_get_step(spinbox_zero_min_range)); in test_spinbox_position_selection()
94 TEST_ASSERT_EQUAL(1, lv_spinbox_get_step(tmp)); in test_spinbox_position_selection()
129 TEST_ASSERT_EQUAL(1, lv_spinbox_get_step(tmp)); in test_spinbox_step_prev()
135 TEST_ASSERT_EQUAL(10, lv_spinbox_get_step(tmp)); in test_spinbox_step_prev()
141 TEST_ASSERT_EQUAL(10, lv_spinbox_get_step(tmp)); in test_spinbox_step_prev()
175 int32_t step = lv_spinbox_get_step(spinbox_events); in test_spinbox_event_key()
179 TEST_ASSERT_EQUAL(step * 10, lv_spinbox_get_step(spinbox_events)); in test_spinbox_event_key()
182 step = lv_spinbox_get_step(spinbox_events); in test_spinbox_event_key()
186 TEST_ASSERT_EQUAL(step / 10, lv_spinbox_get_step(spinbox_events)); in test_spinbox_event_key()
[all …]
/lvgl-latest/src/widgets/spinbox/
Dlv_spinbox.h125 int32_t lv_spinbox_get_step(lv_obj_t * obj);
Dlv_spinbox.c167 int32_t lv_spinbox_get_step(lv_obj_t * obj) in lv_spinbox_get_step() function