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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.cpp112 LEUnicode32 mappedChar = mapper->mapChar(ch); local
114 if (mappedChar == 0xFFFE || mappedChar == 0xFFFF) {
118 if (filterZeroWidth && (mappedChar == 0x200C || mappedChar == 0x200D)) {
119 return canDisplay(mappedChar)? 0x0001 : 0xFFFF;
122 return mapCharToGlyph(mappedChar);
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.cpp128 LEUnicode32 mappedChar = mapper->mapChar(ch); local
130 if (mappedChar == 0xFFFF || mappedChar == 0xFFFE) {
134 if (mappedChar == 0x200C || mappedChar == 0x200D) {
138 LEGlyphID id = (LEGlyphID)env->CallIntMethod(font2D, sunFontIDs.f2dCharToGlyphMID, (jint)mappedChar);
182 LEUnicode32 mappedChar = mapper->mapChar(ch); local
184 if (mappedChar == 0xFFFF) {
188 if (mappedChar == 0x200C || mappedChar
[all...]

Completed in 95 milliseconds