Lines Matching refs:label
46 lv_obj_t * label = lv_label_create(lv_screen_active()); in test_snapshot_with_transform_should_not_leak_memory() local
47 lv_obj_center(label); in test_snapshot_with_transform_should_not_leak_memory()
48 lv_obj_set_style_text_font(label, &lv_font_montserrat_28, 0); in test_snapshot_with_transform_should_not_leak_memory()
49 lv_label_set_text(label, "Wubba lubba dub dub!"); in test_snapshot_with_transform_should_not_leak_memory()
50 lv_obj_set_style_transform_rotation(label, 450, 0); in test_snapshot_with_transform_should_not_leak_memory()
66 lv_obj_delete(label); in test_snapshot_with_transform_should_not_leak_memory()
73 lv_obj_t * label = lv_label_create(lv_screen_active()); in test_snapshot_take_snapshot_immediately_after_obj_create() local
74 lv_obj_set_style_text_font(label, &lv_font_montserrat_28, 0); in test_snapshot_take_snapshot_immediately_after_obj_create()
75 lv_label_set_text(label, "Wubba lubba dub dub!"); in test_snapshot_take_snapshot_immediately_after_obj_create()
77 lv_draw_buf_t * draw_dsc = lv_snapshot_take(label, LV_COLOR_FORMAT_ARGB8888); in test_snapshot_take_snapshot_immediately_after_obj_create()
81 lv_obj_delete(label); in test_snapshot_take_snapshot_immediately_after_obj_create()
97 lv_obj_t * label = lv_label_create(lv_screen_active()); in test_snapshot_take_snapshot_with_transform() local
98 lv_obj_set_style_text_font(label, &lv_font_montserrat_28, 0); in test_snapshot_take_snapshot_with_transform()
99 lv_label_set_text(label, "Wubba lubba dub dub!"); in test_snapshot_take_snapshot_with_transform()
100 lv_obj_set_style_transform_rotation(label, 450, 0); in test_snapshot_take_snapshot_with_transform()
104 lv_obj_delete(label); in test_snapshot_take_snapshot_with_transform()