Lines Matching refs:row

36 static void add_to_cell(lv_obj_t * obj, int32_t col, int32_t row);
38 static lv_obj_t * fill_obj_create(lv_obj_t * parent, int32_t col, int32_t row) in fill_obj_create() argument
56 add_to_cell(obj, col, row); in fill_obj_create()
116 static lv_obj_t * border_obj_create(lv_obj_t * parent, int32_t col, int32_t row) in border_obj_create() argument
124 add_to_cell(obj, col, row); in border_obj_create()
211 static lv_obj_t * box_shadow_obj_create(lv_obj_t * parent, int32_t col, int32_t row) in box_shadow_obj_create() argument
220 add_to_cell(obj, col, row); in box_shadow_obj_create()
277 static lv_obj_t * text_obj_create(lv_obj_t * parent, int32_t col, int32_t row) in text_obj_create() argument
284 add_to_cell(obj, col, row); in text_obj_create()
315 static lv_obj_t * image_obj_create(lv_obj_t * parent, int32_t col, int32_t row, bool recolor) in image_obj_create() argument
325 add_to_cell(obj, col, row); in image_obj_create()
365 uint32_t row = i - startAt; in image_core_cb() local
369 add_to_cell(obj, 0, row * 2); in image_core_cb()
371 obj = image_obj_create(parent, 1, row * 2, recolor); in image_core_cb()
374 obj = image_obj_create(parent, 2, row * 2, recolor); in image_core_cb()
379 obj = image_obj_create(parent, 3, row * 2, recolor); in image_core_cb()
384 obj = image_obj_create(parent, 4, row * 2, recolor); in image_core_cb()
389 obj = image_obj_create(parent, 5, row * 2, recolor); in image_core_cb()
394 obj = image_obj_create(parent, 6, row * 2, recolor); in image_core_cb()
400 obj = image_obj_create(parent, 7, row * 2, recolor); in image_core_cb()
428 static lv_obj_t * line_obj_create(lv_obj_t * parent, int32_t col, int32_t row, lv_point_precise_t p… in line_obj_create() argument
436 add_to_cell(obj, col, row); in line_obj_create()
471 static lv_obj_t * arc_obj_create(lv_obj_t * parent, int32_t col, int32_t row, int32_t w, in arc_obj_create() argument
482 add_to_cell(obj, col, row); in arc_obj_create()
561 static lv_obj_t * triangle_obj_create(lv_obj_t * parent, int32_t col, int32_t row, lv_point_t p[]) in triangle_obj_create() argument
569 add_to_cell(obj, col, row); in triangle_obj_create()
635 static lv_obj_t * layer_obj_create(lv_obj_t * parent, int32_t col, int32_t row, lv_blend_mode_t ble… in layer_obj_create() argument
650 add_to_cell(obj, col, row); in layer_obj_create()
664 int32_t row = 4 * i; in layer_core_cb() local
667 obj = layer_obj_create(parent, 0, row, blend_mode); in layer_core_cb()
670 obj = layer_obj_create(parent, 1, row, blend_mode); in layer_core_cb()
675 obj = layer_obj_create(parent, 2, row, blend_mode); in layer_core_cb()
679 obj = layer_obj_create(parent, 4, row, blend_mode); in layer_core_cb()
684 obj = layer_obj_create(parent, 5, row, blend_mode); in layer_core_cb()
688 obj = layer_obj_create(parent, 7, row, blend_mode); in layer_core_cb()
692 obj = layer_obj_create(parent, 0, row + 2, blend_mode); in layer_core_cb()
698 obj = layer_obj_create(parent, 2, row + 2, blend_mode); in layer_core_cb()
703 obj = layer_obj_create(parent, 5, row + 2, blend_mode); in layer_core_cb()
708 obj = layer_obj_create(parent, 7, row + 2, blend_mode); in layer_core_cb()
760 static lv_obj_t * create_blend_mode_obj(lv_obj_t * parent, int32_t col, int32_t row, const void * s… in create_blend_mode_obj() argument
769 add_to_cell(obj, col, row); in create_blend_mode_obj()
861 static lv_obj_t * create_linear_gradient_obj(lv_obj_t * parent, int32_t col, int32_t row, lv_grad_d… in create_linear_gradient_obj() argument
895 add_to_cell(obj, col, row); in create_linear_gradient_obj()
937 static lv_obj_t * create_radial_gradient_obj(lv_obj_t * parent, int32_t col, int32_t row, lv_grad_d… in create_radial_gradient_obj() argument
975 add_to_cell(obj, col, row); in create_radial_gradient_obj()
1015 static lv_obj_t * create_conical_gradient_obj(lv_obj_t * parent, int32_t col, int32_t row, lv_grad_… in create_conical_gradient_obj() argument
1049 add_to_cell(obj, col, row); in create_conical_gradient_obj()
1162 static void add_to_cell(lv_obj_t * obj, int32_t col, int32_t row) in add_to_cell() argument
1164 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_CENTER, col, 1, LV_GRID_ALIGN_CENTER, row, 1); in add_to_cell()