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

1 2

  /external/harfbuzz_ng/util/
helper-cairo.hh 68 void get_advance (double *x_advance, double *y_advance) {
70 *y_advance = glyphs[num_glyphs].y;
view-cairo.cc 42 double x_advance, y_advance; local
43 line.get_advance (&x_advance, &y_advance);
45 *h = MAX (*h, y_advance);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-fallback-shape.cc 110 buffer->pos[i].y_advance = 0;
117 &buffer->pos[i].y_advance);
hb-ot-shape-fallback.cc 188 buffer->pos[i].y_advance = 0;
323 y_offset -= buffer->pos[base].y_advance;
368 buffer->pos[i].y_advance = 0;
375 y_offset -= buffer->pos[i].y_advance;
378 y_offset += buffer->pos[i].y_advance;
474 pos[idx].y_advance += kern1;
475 pos[skippy_iter.idx].y_advance += kern2;
hb-buffer-serialize.cc 144 pos[i].x_advance, pos[i].y_advance);
207 if (pos->y_advance)
208 p += MAX (0, snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance));
hb-ot-shape.cc 412 buffer->pos[i].y_advance = 0;
424 buffer->pos[i].y_advance = 0;
440 &pos[i].y_advance);
575 pos[i].y_advance = 0;
test.cc 125 pos->y_advance);
hb-buffer.cc 1435 total_y_advance += pos[i].y_advance;
1438 hb_position_t x_advance = 0, y_advance = 0;
1442 pos[i].y_offset += y_advance;
1445 y_advance += pos[i].y_advance;
1448 pos[i].y_advance = 0;
1455 pos[end - 1].y_advance = total_y_advance;
1461 pos[start].y_advance += total_y_advance;
hb-graphite2.cc 356 pPos->y_advance = gr_slot_advance_Y (is, grface, grfont);
363 curradvy += pPos->y_advance;
hb-ot-layout-gpos-table.hh 114 /* y_advance values grow downward but font-space grows upward, hence negation */
116 if (unlikely (!horizontal)) glyph_pos.y_advance -= font->em_scale_y (get_short (values++)); else values++;
137 /* y_advance values grow downward but font-space grows upward, hence negation */
138 if (!horizontal && y_ppem) glyph_pos.y_advance -= (base + get_device (values++)).get_y_delta (font); else values++;
927 pos[i].y_advance = exit_y + pos[i].y_offset;
930 pos[j].y_advance -= d;
935 pos[i].y_advance -= d;
938 pos[j].y_advance = entry_y;
    [all...]
hb-buffer.h 56 hb_position_t y_advance; member in struct:hb_glyph_position_t
  /external/harfbuzz_ng/src/
hb-fallback-shape.cc 110 buffer->pos[i].y_advance = 0;
117 &buffer->pos[i].y_advance);
hb-ot-shape-fallback.cc 188 buffer->pos[i].y_advance = 0;
309 y_offset -= buffer->pos[base].y_advance;
354 buffer->pos[i].y_advance = 0;
361 y_offset -= buffer->pos[i].y_advance;
364 y_offset += buffer->pos[i].y_advance;
449 buffer->pos[buffer->idx].y_advance += kern1;
450 buffer->pos[skippy_iter.idx].y_advance += kern2;
hb-buffer-serialize.cc 114 pos[i].x_advance, pos[i].y_advance);
177 if (pos->y_advance)
178 p += snprintf (p, ARRAY_LENGTH (b) - (p - b), ",%d", pos[i].y_advance);
hb-buffer.cc 1022 total_y_advance += pos[i].y_advance;
1025 hb_position_t x_advance = 0, y_advance = 0;
1029 pos[i].y_offset += y_advance;
1032 y_advance += pos[i].y_advance;
1035 pos[i].y_advance = 0;
1042 pos[end - 1].y_advance = total_y_advance;
1048 pos[start].y_advance += total_y_advance;
hb-buffer-deserialize-json.rl 67 action parse_y_advance { 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-shape.cc 414 &c->buffer->pos[i].y_advance);
431 c->buffer->pos[i].y_advance = 0;
480 c->buffer->pos[i].y_advance = 0;
537 c->buffer->pos[i].y_advance = 0;
test.cc 121 pos->y_advance);
hb-graphite2.cc 351 pPos->y_advance = gr_slot_advance_Y (is, grface, grfont);
358 curradvy += pPos->y_advance;
hb-buffer.h 56 hb_position_t y_advance; member in struct:hb_glyph_position_t
  /external/harfbuzz/src/
harfbuzz-buffer.h 52 HB_Fixed y_advance; member in struct:HB_PositionRec_
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-buffer.h 52 HB_Fixed y_advance; member in struct:HB_PositionRec_
  /external/harfbuzz_ng/contrib/python/lib/
harfbuzz.pyx 58 hb_position_t y_advance
160 temp = glyphinfo(infos[i].codepoint, infos[i].cluster, (positions[i].x_advance / scale, positions[i].y_advance / scale), (positions[i].x_offset / scale, positions[i].y_offset / scale), positions[i].var.u32)
  /external/harfbuzz_ng/test/api/
test-shape.c 132 g_assert_cmpint (0, ==, positions[i].y_advance);

Completed in 677 milliseconds

1 2