Lines Matching refs:glyphID
193 unsigned glyphID = glyph.getGlyphID();
197 if (glyphID < count) {
200 glyphID -= count;
212 uint16_t* glyphID) {
217 if (NULL != glyphID) {
218 *glyphID = glyph;
267 // add the ctx's base, making glyphID unique for chain of contexts
268 unsigned glyphID = tempID + ctx->fBaseGlyphCount;
269 // check for overflow of 16bits, since our glyphID cannot exceed that
270 if (glyphID > 0xFFFF) {
271 glyphID = 0;
273 return SkToU16(glyphID);
276 SkUnichar SkScalerContext::glyphIDToChar(uint16_t glyphID) {
283 if (rangeStart <= glyphID && glyphID < rangeEnd) {
284 return ctx->generateGlyphToChar(glyphID - rangeStart);