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

1 2

  /external/harfbuzz_ng/util/
helper-cairo.hh 72 void get_advance (double *x_advance, double *y_advance) {
73 *x_advance = glyphs[num_glyphs].x;
view-cairo.cc 57 double x_advance, y_advance; local
58 line.get_advance (&x_advance, &y_advance);
62 w = MAX (w, x_sign * x_advance);
  /external/freetype/src/autofit/
afshaper.h 62 FT_Long* x_advance,
afshaper.c 565 *advance = gpos[idx].x_advance;
  /external/harfbuzz_ng/src/
hb-fallback-shape.cc 101 pos[i].x_advance = 0;
108 &pos[i].x_advance,
sample.py 75 x_advance = pos.x_advance variable
79 print("gid%d=%d@%d,%d+%d" % (gid, cluster, x_advance, x_offset, y_offset))
hb-ot-shape-fallback.cc 189 buffer->pos[i].x_advance = 0;
330 x_offset -= buffer->pos[base].x_advance;
376 buffer->pos[i].x_advance = 0;
383 x_offset -= buffer->pos[i].x_advance;
386 x_offset += buffer->pos[i].x_advance;
512 pos[i].x_advance = +(font->x_scale + ((int) space_type)/2) / (int) space_type;
519 pos[i].x_advance = (int64_t) +font->x_scale * 4 / 18;
529 pos[i].x_advance = font->get_glyph_h_advance (glyph);
541 pos[i].x_advance = font->get_glyph_h_advance (glyph);
554 pos[i].x_advance /= 2
    [all...]
hb-kern.hh 100 pos[i].x_advance += kern1;
101 pos[j].x_advance += kern2;
test.cc 82 pos->x_advance,
hb-graphite2.cc 407 pPos->x_advance = info->var1.i32 * xscale;
408 curradvx += pPos->x_advance;
411 pPos->x_advance = 0.;
424 pPos->x_advance = info->var1.i32 * xscale;
425 curradvx -= pPos->x_advance;
428 pPos->x_advance = 0.;
432 pPos->x_offset = (gr_slot_origin_X (is) - info->var1.i32) * xscale - curradvx + pPos->x_advance;
hb-buffer-serialize.cc 153 pos[i].x_advance, pos[i].y_advance));
187 x += pos[i].x_advance;
241 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance));
273 x += pos[i].x_advance;
314 * - `+x_advance`, then `,y_advance` if #hb_glyph_position_t.y_advance is not 0. Then,
hb-buffer-deserialize-text.hh 401 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
457 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
534 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
hb-buffer.cc 1809 hb_position_t x_advance = 0, y_advance = 0; local
    [all...]
hb-buffer-deserialize-json.hh 545 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
601 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
hb-buffer-deserialize-json.rl 66 action parse_x_advance { if (!parse_int (tok, p, &pos.x_advance)) return false; }
hb-buffer-deserialize-text.rl 65 action parse_x_advance { if (!parse_int (tok, p, &pos.x_advance)) return false; }
hb-aat-layout-trak-table.hh 187 buffer->pos[start].x_advance += advance_to_add;
hb-ot-layout-gpos-table.hh 119 if (likely (horizontal)) glyph_pos.x_advance += font->em_scale_x (get_short (values, &ret));
147 if (horizontal && use_x_device) glyph_pos.x_advance += (base + get_device (values, &ret)).get_x_delta (font, store);
1010 pos[i].x_advance = round (exit_x) + pos[i].x_offset;
1013 pos[j].x_advance -= d;
1018 pos[i].x_advance -= d;
1021 pos[j].x_advance = round (entry_x) + pos[j].x_offset;
    [all...]
hb-buffer.h 111 * @x_advance: how much the line advances after drawing this glyph when setting
126 hb_position_t x_advance; member in struct:hb_glyph_position_t
hb-coretext.cc 918 hb_position_t x_advance, y_advance, x_offset, y_offset; local
919 hb_font_get_glyph_advance_for_direction (font, notdef, dir, &x_advance, &y_advance);
921 hb_position_t advance = x_advance + y_advance;
    [all...]
hb-ot-shape.cc 630 pos[i].x_advance = pos[i].y_advance = pos[i].x_offset = pos[i].y_offset = 0;
762 pos->x_offset -= pos->x_advance;
769 pos->x_advance = 0;
798 &pos[0].x_advance, sizeof(pos[0]));
  /external/skqp/third_party/harfbuzz/
hb-buffer-deserialize-text.hh 401 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
457 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
534 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
hb-buffer-deserialize-json.hh 545 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
601 { if (!parse_int (tok, p, &pos.x_advance)) return false; }
  /external/harfbuzz_ng/test/api/
test-shape.c 130 g_assert_cmpint (output_x_advances[i], ==, positions[i].x_advance);
  /external/harfbuzz_ng/test/shaping/data/aots/
hb-aots-tester.cpp 237 curX += pos[i].x_advance;
268 printf (" %d/%d", pos[i].x_advance, pos[i].x_offset);

Completed in 533 milliseconds

1 2