Searched defs:newGlyphCount (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/layout/
H A DLookupProcessor.cpp65 le_int32 newGlyphCount = glyphCount; local
87 newGlyphCount = glyphIterator.applyInsertions();
91 return newGlyphCount;
H A DGlyphIterator.cpp125 le_int32 newGlyphCount = glyphStorage.applyInsertions(); local
128 prevLimit = newGlyphCount;
130 nextLimit = newGlyphCount;
133 return newGlyphCount;
H A DLEGlyphStorage.cpp508 void LEGlyphStorage::adoptGlyphCount(le_int32 newGlyphCount) argument
510 fGlyphCount = newGlyphCount;
566 le_int32 newGlyphCount = fGlyphCount + growAmount; local
568 LEGlyphID *newGlyphs = (LEGlyphID *) LE_GROW_ARRAY(fGlyphs, newGlyphCount);
575 le_int32 *newCharIndices = (le_int32 *) LE_GROW_ARRAY(fCharIndices, newGlyphCount);
583 le_uint32 *newAuxData = (le_uint32 *) LE_GROW_ARRAY(fAuxData, newGlyphCount);
592 fDestIndex = newGlyphCount - 1;
604 position = newGlyphCount;
612 return fGlyphCount = newGlyphCount;

Completed in 2324 milliseconds