Home | History | Annotate | Download | only in shaping

Lines Matching refs:num_glyphs

235     shaper_item.num_glyphs = shaper_item.item.length;
239 QVarLengthArray<HB_Glyph> hb_glyphs(shaper_item.num_glyphs);
240 QVarLengthArray<HB_GlyphAttributes> hb_attributes(shaper_item.num_glyphs);
241 QVarLengthArray<HB_Fixed> hb_advances(shaper_item.num_glyphs);
242 QVarLengthArray<HB_FixedPoint> hb_offsets(shaper_item.num_glyphs);
243 QVarLengthArray<unsigned short> hb_logClusters(shaper_item.num_glyphs);
246 hb_glyphs.resize(shaper_item.num_glyphs);
247 hb_attributes.resize(shaper_item.num_glyphs);
248 hb_advances.resize(shaper_item.num_glyphs);
249 hb_offsets.resize(shaper_item.num_glyphs);
250 hb_logClusters.resize(shaper_item.num_glyphs);
277 if( nglyphs != shaper_item.num_glyphs )
295 shaper_item.num_glyphs, nglyphs);
299 while (i < shaper_item.num_glyphs) {