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

/openjdk7/jdk/src/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<FontScaler> scalerConstructor = null;
114 /* This is the only place to instantiate new FontScaler.
119 public static FontScaler getScaler(Font2D font,
123 FontScaler scaler = null;
149 public static synchronized FontScaler getNullScaler() {
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.java65 protected FontScaler scaler;
174 scaler = FontScaler.getNullScaler();
181 scaler = FontScaler.getNullScaler();
190 scaler = FontScaler.getNullScaler();
199 scaler = FontScaler.getNullScaler();
208 scaler = FontScaler.getNullScaler();
217 scaler = FontScaler.getNullScaler();
226 scaler = FontScaler.getNullScaler();
235 scaler = FontScaler.getNullScaler();
242 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 DTrueTypeFont.java1246 protected synchronized FontScaler getScaler() {
1248 scaler = FontScaler.getScaler(this, fontIndex,

Completed in 41 milliseconds