Searched refs:extraBits (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEGlyphStorage.h183 * @param extraBits - this value will be ORed with each glyph index
188 void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
H A DLayoutEngine.h428 * @param extraBits - this value will be ORed with each glyph index
433 virtual void getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const;
H A DLEGlyphStorage.cpp236 // Copy the glyphs into caller's (32-bit) glyph array, OR in extraBits
237 void LEGlyphStorage::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const argument
256 glyphs[i] = fGlyphs[i] | extraBits;
H A DLayoutEngine.cpp228 // Copy the glyphs into caller's (32-bit) glyph array, OR in extraBits
229 void LayoutEngine::getGlyphs(le_uint32 glyphs[], le_uint32 extraBits, LEErrorCode &success) const argument
231 fGlyphStorage->getGlyphs(glyphs, extraBits, success);

Completed in 36 milliseconds