Searched defs:os_2Table (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DTrueTypeFont.java788 /* Use info in the os_2Table to test CJK support */
965 private void setStyle(ByteBuffer os_2Table) { argument
967 if (os_2Table == null || os_2Table.capacity() < 64) {
971 int fsSelection = os_2Table.getChar(62) & 0xffff;
1008 private void setStrikethroughMetrics(ByteBuffer os_2Table, int upem) { argument
1009 if (os_2Table == null || os_2Table.capacity() < 30 || upem < 0) {
1014 ShortBuffer sb = os_2Table.asShortBuffer();

Completed in 34 milliseconds