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

/openjdk7/jdk/src/share/classes/sun/font/
H A DTrueTypeGlyphMapper.java78 private char getGlyphFromCMAP(int charCode) { argument
80 char glyphCode = cmap.getGlyph(charCode);
89 " for char " + Integer.toHexString(charCode));
H A DNullFontScaler.java86 int getGlyphCode(char charCode) throws FontScalerException { argument
H A DCMap.java436 abstract char getGlyph(int charCode); argument
536 char getGlyph(int charCode) { argument
541 int controlGlyph = getControlCodeGlyph(charCode, true);
554 charCode = xlat[charCode];
578 if (endCount[index] < charCode) {
586 if (charCode >= startCount[index] && charCode <= endCount[index]) {
590 glyphCode = (char)(charCode + idDelta[index]);
596 " charCode
629 getGlyph(int charCode) argument
775 getGlyph(int charCode) argument
854 getGlyph(int charCode) argument
894 getGlyph(int charCode) argument
926 getGlyph(int charCode) argument
1003 getGlyph(int charCode) argument
1037 getGlyph(int charCode) argument
1044 getControlCodeGlyph(int charCode, boolean noSurrogates) argument
[all...]
H A DFontScaler.java207 abstract int getGlyphCode(char charCode) throws FontScalerException; argument
H A DFreetypeFontScaler.java191 synchronized int getGlyphCode(char charCode) throws FontScalerException { argument
193 return getGlyphCodeNative(nativeScaler, charCode);
195 return FontScaler.getNullScaler().getGlyphCode(charCode);
250 private native int getGlyphCodeNative(long pScaler, char charCode); argument
H A DType1Font.java669 public int getGlyphCode(char charCode) { argument
671 return getScaler().getGlyphCode(charCode);
674 return getGlyphCode(charCode);
/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c960 JNIEnv *env, jobject scaler, jlong pScaler, jchar charCode) {
978 return FT_Get_Char_Index(scalerInfo->face, charCode);
959 Java_sun_font_FreetypeFontScaler_getGlyphCodeNative( JNIEnv *env, jobject scaler, jlong pScaler, jchar charCode) argument
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java559 public void modeSpecificDrawChar( Graphics2D g2, int charCode, argument
562 int oneGlyph[] = { charCode };
563 char charArray[] = Character.toChars( charCode );
598 if ( testFont.canDisplay( charCode ))
612 if ( charCode > 0xff )
614 byte oneByte[] = { (byte) charCode };

Completed in 47 milliseconds