Home
last modified time | relevance | path

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

/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.h191 int32_t lv_dropdown_get_option_index(lv_obj_t * obj, const char * option);
Dlv_dropdown.c466 int32_t lv_dropdown_get_option_index(lv_obj_t * obj, const char * option) in lv_dropdown_get_option_index() function
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_dropdown.c449 TEST_ASSERT_EQUAL_INT(1, lv_dropdown_get_option_index(dd, "ab")); in test_dropdown_get_options_should_check_lengths()
452 TEST_ASSERT_EQUAL_INT(3, lv_dropdown_get_option_index(dd, "Option")); in test_dropdown_get_options_should_check_lengths()
453 TEST_ASSERT_EQUAL_INT(-1, lv_dropdown_get_option_index(dd, "Option ")); in test_dropdown_get_options_should_check_lengths()
/lvgl-latest/env_support/pikascript/
Dpika_lv_wegit.c225 return lv_dropdown_get_option_index(lv_obj, txt); in pika_lvgl_dropdown_get_option_index()