OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:em_scale_x
(Results
1 - 4
of
4
) sorted by null
/external/harfbuzz_ng/src/
hb-ot-font.cc
371
return font->
em_scale_x
(ot_font->h_metrics.get_advance (glyph));
393
extents->x_bearing = font->
em_scale_x
(extents->x_bearing);
395
extents->width = font->
em_scale_x
(extents->width);
420
metrics->ascender = font->
em_scale_x
(ot_font->v_metrics.ascender);
421
metrics->descender = font->
em_scale_x
(ot_font->v_metrics.descender);
422
metrics->line_gap = font->
em_scale_x
(ot_font->v_metrics.line_gap);
hb-ot-layout-gdef-table.hh
102
return HB_DIRECTION_IS_HORIZONTAL (direction) ? font->
em_scale_x
(coordinate) : font->em_scale_y (coordinate);
152
font->
em_scale_x
(coordinate) + (this+deviceTable).get_x_delta (font) :
hb-ot-layout-gpos-table.hh
118
if (format & xPlacement) glyph_pos.x_offset += font->
em_scale_x
(get_short (values++));
121
if (likely (horizontal)) glyph_pos.x_advance += font->
em_scale_x
(get_short (values));
237
*x = font->
em_scale_x
(xCoordinate);
267
*x = ret && x_ppem ? cx : font->
em_scale_x
(xCoordinate);
291
*x = font->
em_scale_x
(xCoordinate);
[
all
...]
hb-font-private.hh
119
inline hb_position_t
em_scale_x
(int16_t v) { return em_scale (v, this->x_scale); }
function in struct:hb_font_t
Completed in 457 milliseconds