Home
last modified time | relevance | path

Searched refs:opts (Results 1 – 6 of 6) sorted by relevance

/lvgl-latest/examples/widgets/dropdown/
Dlv_example_dropdown_2.c9 static const char * opts = "Apple\n" in lv_example_dropdown_2() local
16 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
20 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
26 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
32 lv_dropdown_set_options_static(dd, opts); in lv_example_dropdown_2()
Dlv_example_dropdown_2.py5 opts = "\n".join([ variable
14 dd.set_options_static(opts)
17 dd.set_options_static(opts)
23 dd.set_options_static(opts)
29 dd.set_options_static(opts)
/lvgl-latest/examples/widgets/roller/
Dlv_example_roller_2.c25 const char * opts = "1\n2\n3\n4\n5\n6\n7\n8\n9\n10"; in lv_example_roller_2() local
30 lv_roller_set_options(roller, opts, LV_ROLLER_MODE_NORMAL); in lv_example_roller_2()
41 lv_roller_set_options(roller, opts, LV_ROLLER_MODE_NORMAL); in lv_example_roller_2()
50 lv_roller_set_options(roller, opts, LV_ROLLER_MODE_NORMAL); in lv_example_roller_2()
Dlv_example_roller_2.py29 opts = "\n".join(["1","2","3","4","5","6","7","8","9","10"]) variable
33 roller.set_options(opts, lv.roller.MODE.NORMAL)
44 roller.set_options(opts, lv.roller.MODE.NORMAL)
53 roller.set_options(opts, lv.roller.MODE.NORMAL)
/lvgl-latest/src/extra/libs/ffmpeg/
Dlv_ffmpeg.c528 AVDictionary * opts = NULL; in ffmpeg_open_codec_context() local
565 if((ret = avcodec_open2(*dec_ctx, dec, &opts)) < 0) { in ffmpeg_open_codec_context()
/lvgl-latest/src/widgets/
Dlv_dropdown.c406 const char * opts = lv_dropdown_get_options(obj); in lv_dropdown_get_option_index() local
410 const char * start = opts; in lv_dropdown_get_option_index()