Home
last modified time | relevance | path

Searched refs:lv_table_set_cell_value_fmt (Results 1 – 7 of 7) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_table.c46 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/
Dlv_file_explorer.c585 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()
602lv_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/
Dlv_table.h81 void lv_table_set_cell_value_fmt(lv_obj_t * obj, uint32_t row, uint32_t col, const char * fmt,
Dlv_table.c126 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/
Dlv_demo_benchmark.c681lv_table_set_cell_value_fmt(table, i + 2, 1, "%"LV_PRIu32" %%", scenes[i].cpu_avg_usage / cnt); in summary_create()
682lv_table_set_cell_value_fmt(table, i + 2, 2, "%"LV_PRIu32" FPS", scenes[i].fps_avg / cnt); in summary_create()
686lv_table_set_cell_value_fmt(table, i + 2, 3, "%"LV_PRIu32" ms (%"LV_PRIu32" + %"LV_PRIu32")", in summary_create()
714lv_table_set_cell_value_fmt(table, 1, 1, "%"LV_PRIu32" %%", total_avg_cpu / valid_scene_cnt); in summary_create()
715lv_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/
Dlv_example_table_2.c84 lv_table_set_cell_value_fmt(table, i, 0, "Item %"LV_PRIu32, i + 1); in lv_example_table_2()
/lvgl-latest/demos/stress/
Dlv_demo_stress.c301 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()