HomeSort by relevance Sort by last modified time
    Searched defs:newGlyphCount (Results 1 - 3 of 3) sorted by null

  /external/icu4c/layout/
LookupProcessor.cpp 65 le_int32 newGlyphCount = glyphCount;
84 newGlyphCount = glyphIterator.applyInsertions();
88 return newGlyphCount;
GlyphIterator.cpp 117 le_int32 newGlyphCount = glyphStorage.applyInsertions();
120 prevLimit = newGlyphCount;
122 nextLimit = newGlyphCount;
125 return newGlyphCount;
LEGlyphStorage.cpp 508 void LEGlyphStorage::adoptGlyphCount(le_int32 newGlyphCount)
510 fGlyphCount = newGlyphCount;
566 le_int32 newGlyphCount = fGlyphCount + growAmount;
568 LEGlyphID *newGlyphs = (LEGlyphID *) LE_GROW_ARRAY(fGlyphs, newGlyphCount);
574 le_int32 *newCharIndices = (le_int32 *) LE_GROW_ARRAY(fCharIndices, newGlyphCount);
581 le_uint32 *newAuxData = (le_uint32 *) LE_GROW_ARRAY(fAuxData, newGlyphCount);
594 fDestIndex = newGlyphCount - 1;
606 position = newGlyphCount;
614 return fGlyphCount = newGlyphCount;

Completed in 244 milliseconds