Home
last modified time | relevance | path

Searched refs:insertGlyphs (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/layout/
DContextualGlyphInsertionProc2.cpp48 LEGlyphID *insertGlyphs = glyphStorage.insertGlyphs(atGlyph, count + 1, success); in doInsertion() local
50 if(LE_FAILURE(success) || insertGlyphs==NULL) { in doInsertion()
61 insertGlyphs[targetIndex++] = glyphStorage[atGlyph]; in doInsertion()
64 insertGlyphs[count] = glyphStorage[atGlyph]; in doInsertion()
68 insertGlyphs[targetIndex++] = insertionTable.getObject(index++, success); in doInsertion()
DLEGlyphStorage.h332 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& success);
352 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount);
DLEGlyphStorage.cpp546 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount) in insertGlyphs() function in LEGlyphStorage
549 return insertGlyphs(atIndex, insertCount, ignored); in insertGlyphs()
553 LEGlyphID *LEGlyphStorage::insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& succe… in insertGlyphs() function in LEGlyphStorage
DMultipleSubstSubtables.cpp74 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success); in process()
DGlyphIterator.h72 LEGlyphID *insertGlyphs(le_int32 count, LEErrorCode& success);
DGlyphIterator.cpp118 LEGlyphID *GlyphIterator::insertGlyphs(le_int32 count, LEErrorCode& success) in insertGlyphs() function in GlyphIterator
120 return glyphStorage.insertGlyphs(position, count, success); in insertGlyphs()