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

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DGlyphIterator.cpp145 le_int32 newGlyphCount = glyphStorage.applyInsertions(); local
148 prevLimit = newGlyphCount;
150 nextLimit = newGlyphCount;
153 return newGlyphCount;
H A DLookupProcessor.cpp90 le_int32 newGlyphCount = glyphCount; local
112 newGlyphCount = glyphIterator.applyInsertions();
116 return newGlyphCount;
H A DLEGlyphStorage.cpp533 void LEGlyphStorage::adoptGlyphCount(le_int32 newGlyphCount) argument
535 fGlyphCount = newGlyphCount;
591 le_int32 newGlyphCount = fGlyphCount + growAmount; local
593 LEGlyphID *newGlyphs = (LEGlyphID *) LE_GROW_ARRAY(fGlyphs, newGlyphCount);
600 le_int32 *newCharIndices = (le_int32 *) LE_GROW_ARRAY(fCharIndices, newGlyphCount);
608 le_uint32 *newAuxData = (le_uint32 *) LE_GROW_ARRAY(fAuxData, newGlyphCount);
619 fDestIndex = newGlyphCount - 1;
631 position = newGlyphCount;
639 return fGlyphCount = newGlyphCount;

Completed in 25 milliseconds