Home | History | Annotate | Download | only in ports

Lines Matching defs:glyphIndex

413         FT_UInt glyphIndex;
414 for (SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex);
415 glyphIndex != 0;
416 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex)) {
418 ((*glyphToUnicode)[glyphIndex] == 0 || preferredMap)) {
419 (*glyphToUnicode)[glyphIndex] = charCode;
909 FT_UInt glyphIndex;
910 SkUnichar charCode = FT_Get_First_Char( fFace, &glyphIndex );
912 while (glyphIndex != 0) {
913 if (glyphIndex == glyph) {
916 charCode = FT_Get_Next_Char( fFace, charCode, &glyphIndex );