Lines Matching refs:pos

126     lv_point_t pos;  in lv_draw_label()  local
127 pos.x = coords->x1; in lv_draw_label()
128 pos.y = coords->y1; in lv_draw_label()
134 pos.y += y_ofs; in lv_draw_label()
151 pos.y += hint->y; in lv_draw_label()
157 while(pos.y + line_height_font < draw_ctx->clip_area->y1) { in lv_draw_label()
161 pos.y += line_height; in lv_draw_label()
164 if(hint && pos.y >= -LV_LABEL_HINT_UPDATE_TH && hint->line_start < 0) { in lv_draw_label()
166 hint->y = pos.y - coords->y1; in lv_draw_label()
177 pos.x += (lv_area_get_width(coords) - line_width) / 2; in lv_draw_label()
183 pos.x += lv_area_get_width(coords) - line_width; in lv_draw_label()
213 int32_t pos_x_start = pos.x; in lv_draw_label()
216 pos.x += x_ofs; in lv_draw_label()
292 sel_coords.x1 = pos.x; in lv_draw_label()
293 sel_coords.y1 = pos.y; in lv_draw_label()
294 sel_coords.x2 = pos.x + letter_w + dsc->letter_space - 1; in lv_draw_label()
295 sel_coords.y2 = pos.y + line_height - 1; in lv_draw_label()
302 lv_draw_letter(draw_ctx, &dsc_mod, &pos, letter); in lv_draw_label()
305 pos.x += letter_w + dsc->letter_space; in lv_draw_label()
313 p1.y = pos.y + (dsc->font->line_height / 2) + line_dsc.width / 2; in lv_draw_label()
314 p2.x = pos.x; in lv_draw_label()
324 p1.y = pos.y + dsc->font->line_height - dsc->font->base_line - font->underline_position; in lv_draw_label()
325 p2.x = pos.x; in lv_draw_label()
339 pos.x = coords->x1; in lv_draw_label()
345 pos.x += (lv_area_get_width(coords) - line_width) / 2; in lv_draw_label()
352 pos.x += lv_area_get_width(coords) - line_width; in lv_draw_label()
356 pos.y += line_height; in lv_draw_label()
358 if(pos.y > draw_ctx->clip_area->y2) return; in lv_draw_label()