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

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DOpenType.java365 public byte[] getFontTable(int sfntTag); method in interface:OpenType
378 public byte[] getFontTable(String strSfntTag); method in interface:OpenType
394 public byte[] getFontTable(int sfntTag, int offset, int count); method in interface:OpenType
411 public byte[] getFontTable(String strSfntTag, int offset, int count); method in interface:OpenType
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.h191 virtual const void *getFontTable(LETag tableTag) const = 0;
210 virtual const void* getFontTable(LETag tableTag, size_t &length) const { length=-1; return getFontTable(tableTag); } /* -1 = unknown length */ function in class:LEFontInstance
H A DLayoutEngine.h289 virtual const void *getFontTable(LETag tableTag, size_t &length) const;
294 virtual const void *getFontTable(LETag tableTag) const { size_t ignored; return getFontTable(tableTag, ignored); } function in class:LayoutEngine
H A DLayoutEngine.cpp521 const void *LayoutEngine::getFontTable(LETag tableTag, size_t &length) const function in class:LayoutEngine
523 return fFontInstance->getFontTable(tableTag, length);
665 MorphTableHeader2 *morxTable = (MorphTableHeader2 *)fontInstance->getFontTable(morxTableTag);
H A DLETableReference.h231 fStart = (const le_uint8*)(fFont->getFontTable(fTag, fLength)); // note - a null table is not an error.
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.h88 virtual const void *getFontTable(LETag tableTag) const;
89 virtual const void *getFontTable(LETag tableTag, size_t &len) const;
H A DFontInstanceAdapter.cpp70 const void *FontInstanceAdapter::getFontTable(LETag tableTag) const function in class:FontInstanceAdapter
73 return getFontTable(tableTag, ignored);
80 const void *FontInstanceAdapter::getFontTable(LETag tableTag, size_t &length) const function in class:FontInstanceAdapter

Completed in 29 milliseconds