Home | History | Annotate | Download | only in gfx

Lines Matching defs:glyph_count

469       glyph_count(static_cast<size_t>(-1)),
485 if (glyph_count == 0) {
519 for (size_t i = 0; i < glyph_count; ++i)
530 if (glyph_count == 0)
537 const int cluster_end_x = glyphs.end() < glyph_count ?
604 for (size_t i = 0; i < run.glyph_count; ++i) {
606 i + 1 == run.glyph_count ? run.width : run.positions[i + 1].x();
917 scoped_ptr<SkPoint[]> positions(new SkPoint[run.glyph_count]);
918 for (size_t j = 0; j < run.glyph_count; ++j) {
940 int width = (colored_glyphs.end() == run.glyph_count ? run.width :
1131 run->glyph_count = 0;
1167 unsigned int glyph_count = 0;
1168 hb_glyph_info_t* infos = hb_buffer_get_glyph_infos(buffer, &glyph_count);
1169 run->glyph_count = glyph_count;
1172 run->glyphs.reset(new uint16[run->glyph_count]);
1173 run->glyph_to_char.resize(run->glyph_count);
1174 run->positions.reset(new SkPoint[run->glyph_count]);
1176 for (size_t i = 0; i < run->glyph_count; ++i) {