• Home
  • Raw
  • Download

Lines Matching refs:fCharIndices

22     : fGlyphCount(0), fGlyphs(NULL), fCharIndices(NULL), fPositions(NULL),  in LEGlyphStorage()
52 if (fCharIndices != NULL) { in reset()
53 LE_DELETE_ARRAY(fCharIndices); in reset()
54 fCharIndices = NULL; in reset()
86 if (fCharIndices == NULL) { in allocateGlyphArray()
87 fCharIndices = LE_NEW_ARRAY(le_int32, fGlyphCount); in allocateGlyphArray()
89 if (fCharIndices == NULL) { in allocateGlyphArray()
105 fCharIndices[out] = i; in allocateGlyphArray()
113 LE_DELETE_ARRAY(fCharIndices); in allocateGlyphArray()
114 fCharIndices = NULL; in allocateGlyphArray()
182 if (fCharIndices == NULL) { in getCharIndices()
188 charIndices[i] = fCharIndices[i] + indexBase; in getCharIndices()
203 if (fCharIndices == NULL) { in getCharIndices()
208 LE_ARRAY_COPY(charIndices, fCharIndices, fGlyphCount); in getCharIndices()
298 if (fCharIndices == NULL) { in getCharIndex()
308 return fCharIndices[glyphIndex]; in getCharIndex()
317 if (fCharIndices == NULL) { in setCharIndex()
327 fCharIndices[glyphIndex] = charIndex; in setCharIndex()
475 if (fCharIndices != NULL) { in adoptCharIndicesArray()
476 LE_DELETE_ARRAY(fCharIndices); in adoptCharIndicesArray()
479 fCharIndices = from.fCharIndices; in adoptCharIndicesArray()
480 from.fCharIndices = NULL; in adoptCharIndicesArray()
575 le_int32 *newCharIndices = (le_int32 *) LE_GROW_ARRAY(fCharIndices, newGlyphCount); in applyInsertions()
580 fCharIndices = newCharIndices; in applyInsertions()
645 fCharIndices[fDestIndex] = fCharIndices[fSrcIndex]; in applyInsertion()
653 fCharIndices[fDestIndex] = fCharIndices[atPosition]; in applyInsertion()