Searched refs:TrueTypeFont (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontUtilities.java506 if (font2D instanceof TrueTypeFont) {
507 TrueTypeFont ttf = (TrueTypeFont) font2D;
509 ttf.getDirectoryEntry(TrueTypeFont.GSUBTag) == null ||
510 ttf.getDirectoryEntry(TrueTypeFont.GPOSTag) != null;
H A DSunLayoutEngine.java158 if (font instanceof TrueTypeFont) {
159 layoutTables = ((TrueTypeFont) font).getLayoutTableCache();
H A DTrueTypeGlyphMapper.java46 TrueTypeFont font;
50 public TrueTypeGlyphMapper(TrueTypeFont font) {
61 ByteBuffer buffer = font.getTableBuffer(TrueTypeFont.maxpTag);
H A DSunFontManager.java181 private HashMap<String, TrueTypeFont> localeFullNamesToFont;
363 public TrueTypeFont getEUDCFont() {
806 * and are instances of TrueTypeFont we want the
810 if (oldFont instanceof TrueTypeFont &&
811 newFont instanceof TrueTypeFont) {
812 TrueTypeFont oldTTFont = (TrueTypeFont)oldFont;
813 TrueTypeFont newTTFont = (TrueTypeFont)newFont;
1144 TrueTypeFont tt
[all...]
H A DCMap.java144 static CMap initialize(TrueTypeFont font) {
154 ByteBuffer cmapBuffer = font.getTableBuffer(TrueTypeFont.cmapTag);
155 int cmapTableOffset = font.getTableSize(TrueTypeFont.cmapTag);
H A DFileFontStrike.java239 !((TrueTypeFont)fileFont).useEmbeddedBitmapsForSize(intPtSize)) {
267 ((TrueTypeFont)fileFont).
H A DTrueTypeFont.java50 * TrueTypeFont is not called SFntFont because it is not expected
63 public class TrueTypeFont extends FileFont { class in inherits:FileFont
183 public TrueTypeFont(String platname, Object nativeNames, int fIndex, method in class:TrueTypeFont
951 /* TrueTypeFont can use the fsSelection fields of OS/2 table
/openjdk7/jdk/src/windows/classes/sun/awt/
H A DWin32FontManager.java44 import sun.font.TrueTypeFont;
55 private static TrueTypeFont eudcFont;
68 eudcFont = new TrueTypeFont(eudcFile, null, 0,
87 public TrueTypeFont getEUDCFont() {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java72 import sun.font.TrueTypeFont;
302 * fail that case. Just do a quick check whether its a TrueTypeFont
307 font2D instanceof TrueTypeFont) {
511 if (font2D instanceof TrueTypeFont) {
512 textOut(str, font, (TrueTypeFont)font2D, frc,
709 if (font2D instanceof TrueTypeFont) {
746 if (!(slotFont instanceof TrueTypeFont)) {
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFontManager.java158 font2D = new TrueTypeFont(fontFilePath, null, 0, true);

Completed in 43 milliseconds