HomeSort by relevance Sort by last modified time
    Searched refs:y_advance (Results 1 - 25 of 27) sorted by null

1 2

  /external/harfbuzz_ng/util/
helper-cairo.hh 72 void get_advance (double *x_advance, double *y_advance) {
74 *y_advance = glyphs[num_glyphs].y;
view-cairo.cc 57 double x_advance, y_advance; local
58 line.get_advance (&x_advance, &y_advance);
60 h = MAX (h, y_sign * y_advance);
helper-cairo.cc 506 y += -hb_position->y_advance;
  /external/harfbuzz_ng/src/
hb-fallback-shape.cc 129 pos[i].y_advance = 0;
136 &pos[i].y_advance);
hb-ot-shape-fallback.cc 190 buffer->pos[i].y_advance = 0;
330 y_offset -= buffer->pos[base].y_advance;
376 buffer->pos[i].y_advance = 0;
383 y_offset -= buffer->pos[i].y_advance;
386 y_offset += buffer->pos[i].y_advance;
482 pos[idx].y_advance += kern1;
483 pos[skippy_iter.idx].y_advance += kern2;
test.cc 123 pos->y_advance);
hb-buffer.cc 1791 hb_position_t x_advance = 0, y_advance = 0; local
    [all...]
hb-buffer-serialize.cc 151 pos[i].x_advance, pos[i].y_advance));
231 if (pos[i].y_advance)
232 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance));
296 * - `+x_advance`, then `,y_advance` if #hb_glyph_position_t.y_advance is not 0. Then,
hb-graphite2.cc 391 pPos->y_advance = gr_slot_advance_Y (is, grface, nullptr) * yscale;
392 curradvy += pPos->y_advance;
408 pPos->y_advance = gr_slot_advance_Y (is, grface, nullptr) * yscale;
409 curradvy -= pPos->y_advance;
hb-buffer-deserialize-json.hh 549 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
613 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-buffer-deserialize-json.rl 67 action parse_y_advance { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-buffer-deserialize-text.hh 469 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
546 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-buffer-deserialize-text.rl 66 action parse_y_advance { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-ot-layout-gpos-table.hh 123 /* y_advance values grow downward but font-space grows upward, hence negation */
125 if (unlikely (!horizontal)) glyph_pos.y_advance -= font->em_scale_y (get_short (values));
152 /* y_advance values grow downward but font-space grows upward, hence negation */
153 if (!horizontal && use_y_device) glyph_pos.y_advance -= (base + get_device (values)).get_y_delta (font, store);
946 pos[i].y_advance = exit_y + pos[i].y_offset;
949 pos[j].y_advance -= d;
954 pos[i].y_advance -= d;
957 pos[j].y_advance = entry_y;
    [all...]
hb-buffer.h 91 * @y_advance: how much the line advances after drawing this glyph when setting
105 hb_position_t y_advance; member in struct:hb_glyph_position_t
hb-ot-shape.cc 462 pos[i].x_advance = pos[i].y_advance = pos[i].x_offset = pos[i].y_offset = 0;
636 pos->y_offset -= pos->y_advance;
643 pos->y_advance = 0;
683 pos[i].y_advance = c->font->get_glyph_v_advance (info[i].codepoint);
hb-coretext.cc 1067 hb_position_t x_advance, y_advance, x_offset, y_offset; local
    [all...]
  /external/skia/third_party/harfbuzz/
hb-buffer-deserialize-json.hh 549 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
613 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-buffer-deserialize-text.hh 469 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
546 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
  /external/skqp/third_party/harfbuzz/
hb-buffer-deserialize-json.hh 549 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
613 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
hb-buffer-deserialize-text.hh 469 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
546 { if (!parse_int (tok, p, &pos.y_advance)) return false; }
  /external/harfbuzz_ng/test/api/
test-shape.c 132 g_assert_cmpint (0, ==, positions[i].y_advance);
test-buffer.c 310 g_assert_cmpint (0, ==, positions[i].y_advance);
  /external/skia/tools/shape/
SkShaper_harfbuzz.cpp 604 glyph.fAdvance.fY = pos[i].y_advance * textSizeY;
  /external/skqp/tools/shape/
SkShaper_harfbuzz.cpp 599 glyph.fAdvance.fY = pos[i].y_advance * textSizeY;

Completed in 194 milliseconds

1 2