Lines Matching refs:c
205 ResFontBase::SetAlternateChar( CharCode c ) in SetAlternateChar() argument
208 GlyphIndex index = FindGlyphIndex(c); in SetAlternateChar()
235 ResFontBase::GetCharWidth( CharCode c ) const in GetCharWidth()
237 return GetCharWidths(c).charWidth; in GetCharWidth()
241 ResFontBase::GetCharWidths( CharCode c ) const in GetCharWidths()
243 GlyphIndex index = GetGlyphIndex(c); in GetCharWidths()
248 ResFontBase::GetGlyph( Glyph* glyph, CharCode c ) const in GetGlyph()
250 GlyphIndex index = GetGlyphIndex(c); in GetGlyph()
255 ResFontBase::HasGlyph( CharCode c ) const in HasGlyph()
257 return ( GLYPH_INDEX_NOT_FOUND != FindGlyphIndex(c) ); in HasGlyph()
283 ResFontBase::GetGlyphIndex( CharCode c ) const in GetGlyphIndex()
286 GlyphIndex index = FindGlyphIndex(c); in GetGlyphIndex()
291 ResFontBase::FindGlyphIndex( CharCode c ) const in FindGlyphIndex()
295 if (c == m_LastCharCode) in FindGlyphIndex()
300 m_LastCharCode = c; in FindGlyphIndex()
305 if (pMap->ccodeBegin <= c && c <= pMap->ccodeEnd) in FindGlyphIndex()
307 m_LastGlyphIndex = FindGlyphIndex(pMap, c); in FindGlyphIndex()
321 CharCode c in FindGlyphIndex()
334 index = static_cast<u16>(c - pMap->ccodeBegin + offset); in FindGlyphIndex()
342 const int table_index = c - pMap->ccodeBegin; in FindGlyphIndex()
361 if( mid->ccode < c ) in FindGlyphIndex()
365 else if( c < mid->ccode ) in FindGlyphIndex()