Lines Matching refs:nCharCode
85 int GetCachedGlyphWidth( int nCharCode ) const;
86 void CacheGlyphWidth( int nCharCode, int nCharWidth );
93 inline void ImplOs2FontEntry::CacheGlyphWidth( int nCharCode, int nCharWidth ) in CacheGlyphWidth() argument
95 maWidthMap[ nCharCode ] = nCharWidth; in CacheGlyphWidth()
98 inline int ImplOs2FontEntry::GetCachedGlyphWidth( int nCharCode ) const in GetCachedGlyphWidth()
100 IntMap::const_iterator it = maWidthMap.find( nCharCode ); in GetCachedGlyphWidth()
363 int nCharCode = pCodes[0]; local
365 nCharCode = 0x10000 + ((pCodes[0] & 0x03FF) << 10) + (pCodes[1] & 0x03FF);
366 int nGlyphWidth = mrOs2FontEntry.GetCachedGlyphWidth( nCharCode );
371 mrOs2FontEntry.CacheGlyphWidth( nCharCode, nGlyphWidth );
381 if( mrOs2FontData.HasChar( nCharCode ) )
384 if (Ft2FontSupportsUnicodeChar( mhPS, lLcid, TRUE, nCharCode))