Searched refs:col_cnt (Results 1 – 3 of 3) sorted by relevance
84 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_set_cell_value()87 uint32_t cell = row * table->col_cnt + col; in lv_table_set_cell_value()120 if(col >= table->col_cnt) { in lv_table_set_cell_value_fmt()130 uint32_t cell = row * table->col_cnt + col; in lv_table_set_cell_value_fmt()219 uint16_t old_cell_cnt = old_row_cnt * table->col_cnt; in lv_table_set_row_cnt()220 uint32_t new_cell_cnt = table->col_cnt * table->row_cnt; in lv_table_set_row_cnt()227 …table->cell_data = lv_mem_realloc(table->cell_data, table->row_cnt * table->col_cnt * sizeof(char … in lv_table_set_row_cnt()233 uint32_t old_cell_cnt = old_row_cnt * table->col_cnt; in lv_table_set_row_cnt()234 uint32_t new_cell_cnt = table->col_cnt * table->row_cnt; in lv_table_set_row_cnt()241 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt) in lv_table_set_col_cnt() argument[all …]
52 uint16_t col_cnt; member118 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt);
34 …s and columns use `lv_table_set_row_cnt(table, row_cnt)` and `lv_table_set_col_cnt(table, col_cnt)`