Searched refs:insertGlyphs (Results 1 – 6 of 6) sorted by relevance
/external/icu/icu4c/source/layout/ |
D | ContextualGlyphInsertionProc2.cpp | 48 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()
|
D | LEGlyphStorage.h | 332 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount, LEErrorCode& success); 352 LEGlyphID *insertGlyphs(le_int32 atIndex, le_int32 insertCount);
|
D | LEGlyphStorage.cpp | 546 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
|
D | MultipleSubstSubtables.cpp | 74 LEGlyphID *newGlyphs = glyphIterator->insertGlyphs(glyphCount, success); in process()
|
D | GlyphIterator.h | 72 LEGlyphID *insertGlyphs(le_int32 count, LEErrorCode& success);
|
D | GlyphIterator.cpp | 118 LEGlyphID *GlyphIterator::insertGlyphs(le_int32 count, LEErrorCode& success) in insertGlyphs() function in GlyphIterator 120 return glyphStorage.insertGlyphs(position, count, success); in insertGlyphs()
|