/lvgl-3.4.0/examples/others/gridnav/ |
D | lv_example_gridnav_1.c | 24 lv_label_set_text_fmt(label, "No rollover"); in lv_example_gridnav_1() 34 lv_label_set_text_fmt(label, "%d", i); in lv_example_gridnav_1() 48 lv_label_set_text_fmt(label, "Rollover\nUse tab to focus the other container"); in lv_example_gridnav_1()
|
/lvgl-3.4.0/examples/layouts/flex/ |
D | lv_example_flex_1.c | 31 lv_label_set_text_fmt(label, "Item: %u", i); in lv_example_flex_1() 39 lv_label_set_text_fmt(label, "Item: %"LV_PRIu32, i); in lv_example_flex_1()
|
D | lv_example_flex_4.c | 21 lv_label_set_text_fmt(label, "Item: %"LV_PRIu32, i); in lv_example_flex_4()
|
D | lv_example_flex_6.c | 22 lv_label_set_text_fmt(label, "%"LV_PRIu32, i); in lv_example_flex_6()
|
D | lv_example_flex_2.c | 27 lv_label_set_text_fmt(label, "%"LV_PRIu32, i); in lv_example_flex_2()
|
D | lv_example_flex_5.c | 30 lv_label_set_text_fmt(label, "%"LV_PRIu32, i); in lv_example_flex_5()
|
/lvgl-3.4.0/examples/scroll/ |
D | lv_example_scroll_2.c | 35 lv_label_set_text_fmt(label, "Panel %"LV_PRIu32"\nno snap", i); in lv_example_scroll_2() 38 lv_label_set_text_fmt(label, "Panel %"LV_PRIu32, i); in lv_example_scroll_2()
|
D | lv_example_scroll_6.c | 69 lv_label_set_text_fmt(label, "Button %"LV_PRIu32, i); in lv_example_scroll_6()
|
/lvgl-3.4.0/examples/event/ |
D | lv_example_event_4.c | 20 lv_label_set_text_fmt(label, "%d sides", n); in timer_cb() 58 lv_label_set_text_fmt(label, "%d sides", n); in lv_example_event_4()
|
D | lv_example_event_1.c | 11 lv_label_set_text_fmt(label, "%"LV_PRIu32, cnt); in event_cb()
|
D | lv_example_event_3.c | 37 lv_label_set_text_fmt(label, "%"LV_PRIu32, i); in lv_example_event_3()
|
/lvgl-3.4.0/examples/widgets/menu/ |
D | lv_example_menu_4.c | 21 lv_label_set_text_fmt(label, "Hello, I am hiding inside %i", btn_cnt); in float_btn_event_cb() 25 lv_label_set_text_fmt(label, "Item %i", btn_cnt); in float_btn_event_cb()
|
/lvgl-3.4.0/src/extra/widgets/calendar/ |
D | lv_calendar_header_arrow.c | 135 lv_label_set_text_fmt(label, "%d %s", newd.year, month_names_def[newd.month - 1]); in month_event_cb() 145 lv_label_set_text_fmt(label, "%d %s", cur_date->year, month_names_def[cur_date->month - 1]); in value_changed_event_cb()
|
/lvgl-3.4.0/examples/get_started/ |
D | lv_example_get_started_3.c | 11 lv_label_set_text_fmt(label, "%"LV_PRId32, lv_slider_get_value(slider)); in slider_event_cb()
|
D | lv_example_get_started_1.c | 14 lv_label_set_text_fmt(label, "Button: %d", cnt); in btn_event_cb()
|
/lvgl-3.4.0/examples/layouts/grid/ |
D | lv_example_grid_1.c | 35 lv_label_set_text_fmt(label, "c%d, r%d", col, row); in lv_example_grid_1()
|
D | lv_example_grid_3.c | 39 lv_label_set_text_fmt(label, "%d,%d", col, row); in lv_example_grid_3()
|
D | lv_example_grid_4.c | 36 lv_label_set_text_fmt(label, "%d,%d", col, row); in lv_example_grid_4()
|
D | lv_example_grid_6.c | 34 lv_label_set_text_fmt(label, "%d,%d", col, row); in lv_example_grid_6()
|
D | lv_example_grid_5.c | 41 lv_label_set_text_fmt(label, "%d,%d", col, row); in lv_example_grid_5()
|
/lvgl-3.4.0/src/widgets/ |
D | lv_label.h | 109 void lv_label_set_text_fmt(lv_obj_t * obj, const char * fmt, ...) LV_FORMAT_ATTRIBUTE(2, 3);
|
/lvgl-3.4.0/examples/widgets/table/ |
D | lv_example_table_2.c | 94 lv_label_set_text_fmt(label, "%"LV_PRIu32" items were created in %"LV_PRIu32" ms\n" in lv_example_table_2()
|
/lvgl-3.4.0/demos/music/ |
D | lv_demo_music.c | 228 lv_label_set_text_fmt(num, "%d", lv_refr_get_fps_avg()); in auto_step_cb()
|
/lvgl-3.4.0/demos/benchmark/ |
D | lv_demo_benchmark.c | 694 …lv_label_set_text_fmt(title, "%"LV_PRId32"/%d: %s%s", scene_act * 2 + (opa_mode ? 1 : 0), (sizeof(… in scene_next_task_cb() 696 …lv_label_set_text_fmt(subtitle, "Result of \"%s\": %"LV_PRId32" FPS", scenes[scene_act].name, scen… in scene_next_task_cb() 699 …lv_label_set_text_fmt(subtitle, "Result of \"%s + opa\": %"LV_PRId32" FPS", scenes[scene_act - 1].… in scene_next_task_cb() 746 lv_label_set_text_fmt(title, "Weighted FPS: %"LV_PRIu32, fps_weighted); in scene_next_task_cb() 749 lv_label_set_text_fmt(subtitle, "Opa. speed: %"LV_PRIu32"%%", opa_speed_pct); in scene_next_task_cb()
|
/lvgl-3.4.0/examples/widgets/list/ |
D | lv_example_list_2.c | 145 lv_label_set_text_fmt(lab, "Item %d", i); in lv_example_list_2()
|