Searched refs:FontScaler (Results 1 - 9 of 9) sorted by relevance

/openjdk9/jdk/src/java.desktop/share/classes/sun/font/
H A DFontScaler.java37 /* FontScaler is "internal interface" to font rasterizer library.
43 * FontScaler represents combination of particular rasterizer implementation
82 public abstract class FontScaler implements DisposerRecord { class in inherits:DisposerRecord
84 private static FontScaler nullScaler = null;
85 private static Constructor<? extends FontScaler> scalerConstructor = null;
92 Class<? extends FontScaler> scalerClass = null;
98 Class<? extends FontScaler> tmp = (Class<? extends FontScaler>)
115 /* This is the only place to instantiate new FontScaler.
120 public static FontScaler getScale
[all...]
H A DType1GlyphMapper.java37 FontScaler scaler;
49 scaler = FontScaler.getNullScaler();
62 scaler = FontScaler.getNullScaler();
75 scaler = FontScaler.getNullScaler();
84 scaler = FontScaler.getNullScaler();
96 scaler = FontScaler.getNullScaler();
H A DFreetypeFontScaler.java33 /* This is Freetype based implementation of FontScaler.
41 class FreetypeFontScaler extends FontScaler {
82 return FontScaler.getNullScaler().getFontMetrics(0L);
93 return FontScaler.getNullScaler().
108 FontScaler.getNullScaler().
120 return FontScaler.getNullScaler().
133 return FontScaler.getNullScaler().
147 return FontScaler.getNullScaler().
162 return FontScaler
181 return FontScaler
[all...]
H A DFileFont.java66 protected FontScaler scaler;
177 scaler = FontScaler.getNullScaler();
184 scaler = FontScaler.getNullScaler();
193 scaler = FontScaler.getNullScaler();
202 scaler = FontScaler.getNullScaler();
211 scaler = FontScaler.getNullScaler();
220 scaler = FontScaler.getNullScaler();
229 scaler = FontScaler.getNullScaler();
238 scaler = FontScaler.getNullScaler();
245 protected abstract FontScaler getScale
[all...]
H A DNullFontScaler.java32 class NullFontScaler extends FontScaler {
H A DType1Font.java636 protected synchronized FontScaler getScaler() {
638 scaler = FontScaler.getScaler(this, 0, false, fileSize);
655 scaler = FontScaler.getNullScaler();
664 scaler = FontScaler.getNullScaler();
673 scaler = FontScaler.getNullScaler();
H A DFileFontStrike.java460 (NullFontScaler)FontScaler.getNullScaler();
508 (NullFontScaler)FontScaler.getNullScaler();
H A DTrueTypeFont.java1329 protected synchronized FontScaler getScaler() {
1331 scaler = FontScaler.getScaler(this, fontIndex,
/openjdk9/jdk/test/java/awt/FontClass/FontDisposer/
H A DFontDisposeTest.java35 import sun.font.FontScaler;
78 sun.font.FontScaler scaler =
79 (sun.font.FontScaler)getScalerMethod.invoke(type1Font);

Completed in 189 milliseconds