Lines Matching refs:cont_sub
41 lv_obj_t * cont_sub = lv_obj_create(cont_main); in test_subgrid_row() local
42 lv_obj_set_grid_cell(cont_sub, LV_GRID_ALIGN_STRETCH, 1, 2, LV_GRID_ALIGN_STRETCH, 1, 2); in test_subgrid_row()
43 lv_obj_set_grid_dsc_array(cont_sub, col_dsc2, NULL); in test_subgrid_row()
44 lv_obj_set_style_pad_all(cont_sub, 0, 0); in test_subgrid_row()
49 button_create(cont_sub, "Sub 0,0", 0, 0); in test_subgrid_row()
50 button_create(cont_sub, "Sub 1,0", 1, 0); in test_subgrid_row()
51 button_create(cont_sub, "Sub 2,0", 2, 0); in test_subgrid_row()
52 button_create(cont_sub, "Sub 3,0", 3, 0); in test_subgrid_row()
53 button_create(cont_sub, "Sub 1,1", 1, 1); in test_subgrid_row()
54 button_create(cont_sub, "Sub 0,1", 0, 1); in test_subgrid_row()
71 lv_obj_t * cont_sub = lv_obj_create(cont_main); in test_subgrid_col() local
72 lv_obj_set_grid_cell(cont_sub, LV_GRID_ALIGN_STRETCH, 1, 2, LV_GRID_ALIGN_STRETCH, 1, 2); in test_subgrid_col()
73 lv_obj_set_grid_dsc_array(cont_sub, NULL, row_dsc2); in test_subgrid_col()
74 lv_obj_set_style_pad_all(cont_sub, 0, 0); in test_subgrid_col()
79 button_create(cont_sub, "Sub 0,0", 0, 0); in test_subgrid_col()
80 button_create(cont_sub, "Sub 0,1", 0, 1); in test_subgrid_col()
81 button_create(cont_sub, "Sub 0,2", 0, 2); in test_subgrid_col()
82 button_create(cont_sub, "Sub 0,3", 0, 3); in test_subgrid_col()
83 button_create(cont_sub, "Sub 1,0", 1, 0); in test_subgrid_col()
84 button_create(cont_sub, "Sub 1,1", 1, 1); in test_subgrid_col()