Lines Matching refs:c
203 ResFontBase::SetAlternateChar( CharCode c ) in SetAlternateChar() argument
206 GlyphIndex index = FindGlyphIndex(c); in SetAlternateChar()
233 ResFontBase::GetCharWidth( CharCode c ) const in GetCharWidth()
235 return GetCharWidths(c).charWidth; in GetCharWidth()
239 ResFontBase::GetCharWidths( CharCode c ) const in GetCharWidths()
241 GlyphIndex index = GetGlyphIndex(c); in GetCharWidths()
246 ResFontBase::GetGlyph( Glyph* glyph, CharCode c ) const in GetGlyph()
248 GlyphIndex index = GetGlyphIndex(c); in GetGlyph()
253 ResFontBase::HasGlyph( CharCode c ) const in HasGlyph()
255 return ( GLYPH_INDEX_NOT_FOUND != FindGlyphIndex(c) ); in HasGlyph()
281 ResFontBase::GetGlyphIndex( CharCode c ) const in GetGlyphIndex()
284 GlyphIndex index = FindGlyphIndex(c); in GetGlyphIndex()
289 ResFontBase::FindGlyphIndex( CharCode c ) const in FindGlyphIndex()
293 if (c == m_LastCharCode) in FindGlyphIndex()
298 m_LastCharCode = c; in FindGlyphIndex()
303 if (pMap->ccodeBegin <= c && c <= pMap->ccodeEnd) in FindGlyphIndex()
305 m_LastGlyphIndex = FindGlyphIndex(pMap, c); in FindGlyphIndex()
319 CharCode c in FindGlyphIndex()
332 index = static_cast<u16>(c - pMap->ccodeBegin + offset); in FindGlyphIndex()
340 const int table_index = c - pMap->ccodeBegin; in FindGlyphIndex()
359 if( mid->ccode < c ) in FindGlyphIndex()
363 else if( c < mid->ccode ) in FindGlyphIndex()