Lines Matching refs:obj
19 lv_obj_t * obj; in lv_example_grid_2() local
22 obj = lv_obj_create(cont); in lv_example_grid_2()
23 lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT); in lv_example_grid_2()
24 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 0, 1, in lv_example_grid_2()
26 label = lv_label_create(obj); in lv_example_grid_2()
30 obj = lv_obj_create(cont); in lv_example_grid_2()
31 lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT); in lv_example_grid_2()
32 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 1, 1, in lv_example_grid_2()
34 label = lv_label_create(obj); in lv_example_grid_2()
38 obj = lv_obj_create(cont); in lv_example_grid_2()
39 lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT); in lv_example_grid_2()
40 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 2, 1, in lv_example_grid_2()
42 label = lv_label_create(obj); in lv_example_grid_2()
46 obj = lv_obj_create(cont); in lv_example_grid_2()
47 lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT); in lv_example_grid_2()
48 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 1, 2, in lv_example_grid_2()
50 label = lv_label_create(obj); in lv_example_grid_2()
54 obj = lv_obj_create(cont); in lv_example_grid_2()
55 lv_obj_set_size(obj, LV_SIZE_CONTENT, LV_SIZE_CONTENT); in lv_example_grid_2()
56 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, 0, 1, in lv_example_grid_2()
58 label = lv_label_create(obj); in lv_example_grid_2()