Searched refs:lv_table_set_cell_value_fmt (Results 1 – 7 of 7) sorted by relevance
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_table.c | 46 lv_table_set_cell_value_fmt(table, 0, 1, "LVGL %s", "Rocks!"); in test_table_should_grow_columns_automatically_when_setting_formatted_cell_value() 196 lv_table_set_cell_value_fmt(table, 3, i, "%d", i); in test_table_rendering() 199 lv_table_set_cell_value_fmt(table, 2, 3, "Multi\nline text"); in test_table_rendering() 200 lv_table_set_cell_value_fmt(table, 2, 4, "Very long text wrapped automatically"); in test_table_rendering() 203 lv_table_set_cell_value_fmt(table, 4, 3, "crop crop crop crop crop crop crop crop "); in test_table_rendering()
|
/lvgl-latest/src/others/file_explorer/ |
D | lv_file_explorer.c | 585 lv_table_set_cell_value_fmt(explorer->file_table, index, 0, LV_SYMBOL_IMAGE " %s", fn); in show_dir() 590 lv_table_set_cell_value_fmt(explorer->file_table, index, 0, LV_SYMBOL_AUDIO " %s", fn); in show_dir() 594 lv_table_set_cell_value_fmt(explorer->file_table, index, 0, LV_SYMBOL_VIDEO " %s", fn); in show_dir() 602 … lv_table_set_cell_value_fmt(explorer->file_table, index, 0, LV_SYMBOL_DIRECTORY " %s", fn + 1); in show_dir() 606 lv_table_set_cell_value_fmt(explorer->file_table, index, 0, LV_SYMBOL_FILE " %s", fn); in show_dir()
|
/lvgl-latest/src/widgets/table/ |
D | lv_table.h | 81 void lv_table_set_cell_value_fmt(lv_obj_t * obj, uint32_t row, uint32_t col, const char * fmt,
|
D | lv_table.c | 126 void lv_table_set_cell_value_fmt(lv_obj_t * obj, uint32_t row, uint32_t col, const char * fmt, ...) in lv_table_set_cell_value_fmt() function
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 681 … lv_table_set_cell_value_fmt(table, i + 2, 1, "%"LV_PRIu32" %%", scenes[i].cpu_avg_usage / cnt); in summary_create() 682 … lv_table_set_cell_value_fmt(table, i + 2, 2, "%"LV_PRIu32" FPS", scenes[i].fps_avg / cnt); in summary_create() 686 … lv_table_set_cell_value_fmt(table, i + 2, 3, "%"LV_PRIu32" ms (%"LV_PRIu32" + %"LV_PRIu32")", in summary_create() 714 … lv_table_set_cell_value_fmt(table, 1, 1, "%"LV_PRIu32" %%", total_avg_cpu / valid_scene_cnt); in summary_create() 715 … lv_table_set_cell_value_fmt(table, 1, 2, "%"LV_PRIu32" FPS", total_avg_fps / valid_scene_cnt); in summary_create() 719 lv_table_set_cell_value_fmt(table, 1, 3, "%"LV_PRIu32" ms (%"LV_PRIu32" + %"LV_PRIu32")", in summary_create()
|
/lvgl-latest/examples/widgets/table/ |
D | lv_example_table_2.c | 84 lv_table_set_cell_value_fmt(table, i, 0, "Item %"LV_PRIu32, i + 1); in lv_example_table_2()
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 301 lv_table_set_cell_value_fmt(obj, 3, 0, "%d,%d", 5, 0); in obj_test_task_cb() 303 lv_table_set_cell_value_fmt(obj, 1, 0, "%s", "1,0"); in obj_test_task_cb()
|