Lines Matching defs:glyphCode
70 public final int compositeGlyphCode(int slot, int glyphCode) {
71 return (slot << 24 | (glyphCode & GLYPHMASK));
97 private void setCachedGlyphCode(int unicode, int glyphCode) {
108 glyphMaps[index0][unicode & 0xff] = glyphCode;
125 int glyphCode = mapper.charToGlyph(unicode);
126 if (glyphCode != mapper.getMissingGlyphCode()) {
127 glyphCode = compositeGlyphCode(slot, glyphCode);
128 setCachedGlyphCode(unicode, glyphCode);
129 return glyphCode;
160 int glyphCode = getCachedGlyphCode(unicode);
161 if (glyphCode == UNINITIALIZED_GLYPH) {
162 glyphCode = convertToGlyph(unicode);
164 return glyphCode;
170 int glyphCode = mapper.charToGlyph(unicode);
171 if (glyphCode != mapper.getMissingGlyphCode()) {
172 return compositeGlyphCode(prefSlot, glyphCode);
180 int glyphCode = getCachedGlyphCode(unicode);
181 if (glyphCode == UNINITIALIZED_GLYPH) {
182 glyphCode = convertToGlyph(unicode);
184 return glyphCode;