Searched refs:SLOTMASK (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DCompositeStrike.java44 static final int SLOTMASK = 0xffffff; field in class:CompositeStrike
121 images[i] = strike.getGlyphImagePtr(glyphCodes[i] & SLOTMASK);
128 return strike.getGlyphImagePtr(glyphCode & SLOTMASK);
133 strike.getGlyphImageBounds(glyphCode & SLOTMASK, pt, result);
138 return strike.getGlyphMetrics(glyphCode & SLOTMASK);
147 return strike.getGlyphAdvance(glyphCode & SLOTMASK);
163 return strike.getGlyphOutlineBounds(glyphCode & SLOTMASK);
169 GeneralPath path = strike.getGlyphOutline(glyphCode & SLOTMASK, x, y);
200 tmpGlyphs[i] = glyphs[i] & SLOTMASK;
H A DFontRunIterator.java121 int sl = mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK;
123 while ((ch = nextCodePoint(lim)) != DONE && (mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK) == sl);
H A DCompositeGlyphMapper.java47 public static final int SLOTMASK = 0xff000000; field in class:CompositeGlyphMapper
H A DCompositeFont.java379 int slotglyphCode = glyphCode & CompositeStrike.SLOTMASK;

Completed in 34 milliseconds