Lines Matching refs:index

206     GlyphIndex index = FindGlyphIndex(c);  in SetAlternateChar()  local
208 if (index != GLYPH_INDEX_NOT_FOUND) in SetAlternateChar()
210 m_pFontInfo->alterCharIndex = index; in SetAlternateChar()
241 GlyphIndex index = GetGlyphIndex(c); in GetCharWidths() local
242 return GetCharWidthsFromIndex(index); in GetCharWidths()
248 GlyphIndex index = GetGlyphIndex(c); in GetGlyph() local
249 GetGlyphFromIndex(glyph, index); in GetGlyph()
284 GlyphIndex index = FindGlyphIndex(c); in GetGlyphIndex() local
285 return (index != GLYPH_INDEX_NOT_FOUND) ? index: m_pFontInfo->alterCharIndex; in GetGlyphIndex()
323 u16 index = GLYPH_INDEX_NOT_FOUND; in FindGlyphIndex() local
332 index = static_cast<u16>(c - pMap->ccodeBegin + offset); in FindGlyphIndex()
342 index = pMap->GetMapInfo()[table_index]; in FindGlyphIndex()
369 index = mid->index; in FindGlyphIndex()
382 return index; in FindGlyphIndex()
386 ResFontBase::GetCharWidthsFromIndex( GlyphIndex index ) const in GetCharWidthsFromIndex()
395 if (pWidth->indexBegin <= index && index <= pWidth->indexEnd) in GetCharWidthsFromIndex()
397 return GetCharWidthsFromIndex( pWidth, index ); in GetCharWidthsFromIndex()
409 GlyphIndex index in GetCharWidthsFromIndex()
413 return pWidth->GetWidthTable()[index - pWidth->indexBegin]; in GetCharWidthsFromIndex()
419 GlyphIndex index in GetGlyphFromIndex()
426 const u32 sheetNo = index / cellsInASheet; in GetGlyphFromIndex()
431 glyph->widths = GetCharWidthsFromIndex(index); in GetGlyphFromIndex()
433 SetGlyphMember(glyph, index, tg); in GetGlyphFromIndex()
439 GlyphIndex index, in SetGlyphMember() argument
443 const u32 cellNo = index % internal::GetCellsInASheet(tg); in SetGlyphMember()