Searched refs:opts (Results 1 – 6 of 6) sorted by relevance
/lvgl-latest/examples/widgets/dropdown/ |
D | lv_example_dropdown_2.c | 9 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()
|
D | lv_example_dropdown_2.py | 5 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/ |
D | lv_example_roller_2.c | 25 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()
|
D | lv_example_roller_2.py | 29 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/ |
D | lv_ffmpeg.c | 528 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/ |
D | lv_dropdown.c | 406 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()
|