Home | History | Annotate | Download | only in gfx

Lines Matching defs:glyph_count

412       glyph_count(-1),
426 for (size_t i = 1; i < glyph_count && pos >= glyph_to_char[i]; ++i)
432 for (size_t i = 0; i < glyph_count; ++i) {
458 return Range(last, glyph_count);
467 return Range(first, glyph_count);
473 for (size_t i = 0; i < glyph_count; ++i) {
488 const int x = glyph_pos < glyph_count ?
516 for (size_t i = 0; i < run.glyph_count; ++i) {
518 i + 1 == run.glyph_count ? run.width : run.positions[i + 1].x();
827 int width = (colored_glyphs.end() == run.glyph_count ? run.width :
986 unsigned int glyph_count = 0;
987 hb_glyph_info_t* infos = hb_buffer_get_glyph_infos(buffer, &glyph_count);
990 run->glyph_count = glyph_count;
991 run->glyphs.reset(new uint16[run->glyph_count]);
992 run->glyph_to_char.reset(new uint32[run->glyph_count]);
993 run->positions.reset(new SkPoint[run->glyph_count]);
994 for (size_t i = 0; i < run->glyph_count; ++i) {