Lines Matching refs:index
208 GlyphIndex index = FindGlyphIndex(c); in SetAlternateChar() local
210 if (index != GLYPH_INDEX_NOT_FOUND) in SetAlternateChar()
212 m_pFontInfo->alterCharIndex = index; in SetAlternateChar()
243 GlyphIndex index = GetGlyphIndex(c); in GetCharWidths() local
244 return GetCharWidthsFromIndex(index); in GetCharWidths()
250 GlyphIndex index = GetGlyphIndex(c); in GetGlyph() local
251 GetGlyphFromIndex(glyph, index); in GetGlyph()
286 GlyphIndex index = FindGlyphIndex(c); in GetGlyphIndex() local
287 return (index != GLYPH_INDEX_NOT_FOUND) ? index: m_pFontInfo->alterCharIndex; in GetGlyphIndex()
325 u16 index = GLYPH_INDEX_NOT_FOUND; in FindGlyphIndex() local
334 index = static_cast<u16>(c - pMap->ccodeBegin + offset); in FindGlyphIndex()
344 index = pMap->GetMapInfo()[table_index]; in FindGlyphIndex()
371 index = mid->index; in FindGlyphIndex()
384 return index; in FindGlyphIndex()
388 ResFontBase::GetCharWidthsFromIndex( GlyphIndex index ) const in GetCharWidthsFromIndex()
397 if (pWidth->indexBegin <= index && index <= pWidth->indexEnd) in GetCharWidthsFromIndex()
399 return GetCharWidthsFromIndex( pWidth, index ); in GetCharWidthsFromIndex()
411 GlyphIndex index in GetCharWidthsFromIndex()
415 return pWidth->GetWidthTable()[index - pWidth->indexBegin]; in GetCharWidthsFromIndex()
421 GlyphIndex index in GetGlyphFromIndex()
428 const u32 sheetNo = index / cellsInASheet; in GetGlyphFromIndex()
433 glyph->widths = GetCharWidthsFromIndex(index); in GetGlyphFromIndex()
435 SetGlyphMember(glyph, index, tg); in GetGlyphFromIndex()
441 GlyphIndex index, in SetGlyphMember() argument
445 const u32 cellNo = index % internal::GetCellsInASheet(tg); in SetGlyphMember()