Lines Matching defs:nativeFont
37 NativeFont nativeFont;
92 NativeStrike(NativeFont nativeFont, FontStrikeDesc desc) {
93 super(nativeFont, desc);
94 this.nativeFont = nativeFont;
101 if (nativeFont.isBitmapDelegate) {
111 byte [] nameBytes = nativeFont.getPlatformNameBytes(ptSize);
115 SunFontManager.getInstance().deRegisterBadFont(nativeFont);
125 numGlyphs = nativeFont.getMapper().getNumGlyphs();
126 this.disposer = new NativeStrikeDisposer(nativeFont, desc,
174 NativeStrike(NativeFont nativeFont, FontStrikeDesc desc,
176 super(nativeFont, desc);
177 this.nativeFont = nativeFont;
181 byte [] nameBytes = nativeFont.getPlatformNameBytes(ptSize);
184 int numGlyphs = nativeFont.getMapper().getNumGlyphs();
198 strikeMetrics = nativeFont.getFontMetrics(pScalerContext);
227 glyphPtr = nativeFont.getGlyphImage(pScalerContext,glyphCode);
246 glyphPtr = nativeFont.getGlyphImage(pScalerContext, glyphCode);
268 return nativeFont.getGlyphImageNoDefault(pScalerContext, glyphCode);
281 return nativeFont.getGlyphAdvance(pScalerContext, glyphCode);
285 return nativeFont.getGlyphOutlineBounds(pScalerContext, glyphCode);
309 DelegateStrike(NativeFont nativeFont, FontStrikeDesc desc,
311 super(nativeFont, desc);