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

1 2

  /external/harfbuzz_ng/util/
helper-cairo.hh 68 void get_advance (double *x_advance, double *y_advance) {
69 *x_advance = glyphs[num_glyphs].x;
view-cairo.cc 42 double x_advance, y_advance; local
43 line.get_advance (&x_advance, &y_advance);
47 *w = MAX (*w, x_advance);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-fallback-shape.cc 122 pos[i].x_advance = 0;
129 &pos[i].x_advance,
hb-ot-shape-fallback.cc 189 buffer->pos[i].x_advance = 0;
324 x_offset -= buffer->pos[base].x_advance;
370 buffer->pos[i].x_advance = 0;
377 x_offset -= buffer->pos[i].x_advance;
380 x_offset += buffer->pos[i].x_advance;
467 pos[idx].x_advance += kern1;
468 pos[skippy_iter.idx].x_advance += kern2;
hb-graphite2.cc 356 pPos->x_advance = gr_slot_advance_X (is, grface, grfont);
359 curradvx -= pPos->x_advance;
362 curradvx += pPos->x_advance;
367 pPos[-1].x_advance += gr_seg_advance_X(seg) - curradvx;
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; }
test.cc 124 pos->x_advance,
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-serialize.cc 144 pos[i].x_advance, pos[i].y_advance);
206 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance));
hb-buffer.cc 1508 total_x_advance += pos[i].x_advance;
1512 hb_position_t x_advance = 0, y_advance = 0;
1515 pos[i].x_offset += x_advance;
1518 x_advance += pos[i].x_advance;
1521 pos[i].x_advance = 0;
1528 pos[end - 1].x_advance = total_x_advance;
1534 pos[start].x_advance += total_x_advance;
hb-buffer.h 55 hb_position_t x_advance; member in struct:hb_glyph_position_t
hb-ot-shape.cc 476 pos->x_offset -= pos->x_advance;
483 pos->x_advance = 0;
526 &pos[i].x_advance,
675 pos[i].x_advance = 0;
  /external/harfbuzz_ng/src/
hb-fallback-shape.cc 122 pos[i].x_advance = 0;
129 &pos[i].x_advance,
hb-ot-shape-fallback.cc 189 buffer->pos[i].x_advance = 0;
324 x_offset -= buffer->pos[base].x_advance;
370 buffer->pos[i].x_advance = 0;
377 x_offset -= buffer->pos[i].x_advance;
380 x_offset += buffer->pos[i].x_advance;
465 pos[idx].x_advance += kern1;
466 pos[skippy_iter.idx].x_advance += kern2;
hb-graphite2.cc 356 pPos->x_advance = gr_slot_advance_X (is, grface, grfont);
359 curradvx -= pPos->x_advance;
362 curradvx += pPos->x_advance;
367 pPos[-1].x_advance += gr_seg_advance_X(seg) - curradvx;
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; }
test.cc 124 pos->x_advance,
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-buffer-serialize.cc 144 pos[i].x_advance, pos[i].y_advance);
206 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), "%d", pos[i].x_advance));
hb-buffer.cc 1508 total_x_advance += pos[i].x_advance;
1512 hb_position_t x_advance = 0, y_advance = 0;
1515 pos[i].x_offset += x_advance;
1518 x_advance += pos[i].x_advance;
1521 pos[i].x_advance = 0;
1528 pos[end - 1].x_advance = total_x_advance;
1534 pos[start].x_advance += total_x_advance;
hb-buffer.h 55 hb_position_t x_advance; member in struct:hb_glyph_position_t
hb-ot-shape.cc 474 pos->x_offset -= pos->x_advance;
481 pos->x_advance = 0;
524 &pos[i].x_advance,
671 pos[i].x_advance = 0;
  /external/harfbuzz_ng/test/api/
test-shape.c 130 g_assert_cmpint (output_x_advances[i], ==, positions[i].x_advance);

Completed in 292 milliseconds

1 2