Lines Matching refs:IndexLookup
2420 IndexLookup.clear(); in ClearOutputData()
2436 IndexLookup.clear(); in BuildLookupTable()
2443 IndexLookup[codepoint] = (ImWchar)i; in BuildLookupTable()
2457 IndexLookup[(int)tab_glyph.Codepoint] = (ImWchar)(Glyphs.Size-1); in BuildLookupTable()
2475 IM_ASSERT(IndexAdvanceX.Size == IndexLookup.Size); in GrowIndex()
2476 if (new_size <= IndexLookup.Size) in GrowIndex()
2479 IndexLookup.resize(new_size, (ImWchar)-1); in GrowIndex()
2509 …IM_ASSERT(IndexLookup.Size > 0); // Currently this can only be called AFTER the font has been b… in AddRemapChar()
2510 int index_size = IndexLookup.Size; in AddRemapChar()
2512 …if (dst < index_size && IndexLookup.Data[dst] == (ImWchar)-1 && !overwrite_dst) // 'dst' already e… in AddRemapChar()
2518 IndexLookup[dst] = (src < index_size) ? IndexLookup.Data[src] : (ImWchar)-1; in AddRemapChar()
2524 if (c >= IndexLookup.Size) in FindGlyph()
2526 const ImWchar i = IndexLookup.Data[c]; in FindGlyph()
2534 if (c >= IndexLookup.Size) in FindGlyphNoFallback()
2536 const ImWchar i = IndexLookup.Data[c]; in FindGlyphNoFallback()