/external/icu/icu4c/source/layout/ |
IndicRearrangementProcessor.cpp | 41 ByteOffset IndicRearrangementProcessor::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index) 56 doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask)); 70 void IndicRearrangementProcessor::doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const 82 a = glyphStorage[firstGlyph]; 83 ia = glyphStorage.getCharIndex(firstGlyph, success); 87 glyphStorage[x - 1] = glyphStorage[x]; 88 ix = glyphStorage.getCharIndex(x, success); 89 glyphStorage.setCharIndex(x - 1, ix, success); 93 glyphStorage[lastGlyph] = a [all...] |
IndicRearrangementProcessor2.cpp | 38 le_uint16 IndicRearrangementProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, 54 doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask)); 67 void IndicRearrangementProcessor2::doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const 79 a = glyphStorage[firstGlyph]; 80 ia = glyphStorage.getCharIndex(firstGlyph, success); 84 glyphStorage[x - 1] = glyphStorage[x]; 85 ix = glyphStorage.getCharIndex(x, success); 86 glyphStorage.setCharIndex(x - 1, ix, success); 90 glyphStorage[lastGlyph] = a [all...] |
MPreFixups.cpp | 43 void MPreFixups::apply(LEGlyphStorage &glyphStorage, LEErrorCode& success) 54 while (glyphStorage[baseIndex] == 0xFFFF || glyphStorage[baseIndex] == 0xFFFE) { 58 while (glyphStorage[mpreLimit] == 0xFFFF || glyphStorage[mpreLimit] == 0xFFFE) { 83 mpreSave[i] = glyphStorage[mpreIndex + i]; 84 indexSave[i] = glyphStorage.getCharIndex(mpreIndex + i, success); //charIndices[mpreIndex + i]; 88 LEGlyphID glyph = glyphStorage[mpreLimit + i]; 89 le_int32 charIndex = glyphStorage.getCharIndex(mpreLimit + i, success); 91 glyphStorage[mpreIndex + i] = glyph [all...] |
GlyphPositioningTables.cpp | 19 void GlyphPositioningTableHeader::process(const LEReferenceTo<GlyphPositioningTableHeader> &base, LEGlyphStorage &glyphStorage, GlyphPositionAdjustments *glyphPositionAdjustments, le_bool rightToLeft, 33 processor.process(glyphStorage, glyphPositionAdjustments, rightToLeft, glyphDefinitionTableHeader, fontInstance, success); 35 glyphPositionAdjustments->applyCursiveAdjustments(glyphStorage, rightToLeft, fontInstance);
|
SegmentSingleProcessor2.cpp | 36 void SegmentSingleProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 39 le_int32 glyphCount = glyphStorage.getGlyphCount(); 43 LEGlyphID thisGlyph = glyphStorage[glyph]; 49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
SimpleArrayProcessor.cpp | 35 void SimpleArrayProcessor::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 37 le_int32 glyphCount = glyphStorage.getGlyphCount(); 43 LEGlyphID thisGlyph = glyphStorage[glyph]; 46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
SimpleArrayProcessor2.cpp | 37 void SimpleArrayProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 40 le_int32 glyphCount = glyphStorage.getGlyphCount(); 44 LEGlyphID thisGlyph = glyphStorage[glyph]; 48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
SingleTableProcessor.cpp | 35 void SingleTableProcessor::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 39 le_int32 glyphCount = glyphStorage.getGlyphCount(); 42 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success); 45 glyphStorage[glyph] = SWAPW(lookupSingle->value);
|
SingleTableProcessor2.cpp | 36 void SingleTableProcessor2::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 41 le_int32 glyphCount = glyphStorage.getGlyphCount(); 44 const LookupSingle *lookupSingle = singleTableLookupTable->lookupSingle(singleTableLookupTable, entries, glyphStorage[glyph], success); 47 glyphStorage[glyph] = SWAPW(lookupSingle->value);
|
ThaiLayoutEngine.cpp | 59 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) 82 glyphStorage.allocateGlyphArray(count * 2, FALSE, success); 90 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage); 91 mapCharsToGlyphs(outChars, 0, glyphCount, FALSE, FALSE, glyphStorage, success); 95 glyphStorage.adoptGlyphCount(glyphCount); 101 LEGlyphStorage &glyphStorage, LEErrorCode &success) 115 kt.process(glyphStorage, success);
|
ArabicLayoutEngine.h | 117 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success); 136 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success); 138 // static void adjustMarkGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success); 201 virtual le_int32 glyphPostProcessing(LEGlyphStorage &tempGlyphStorage, LEGlyphStorage &glyphStorage, LEErrorCode &success); 213 * @param glyphStorage - the glyph storage object. Glyph and char index arrays will be updated. 220 LEGlyphStorage &glyphStorage, LEErrorCode &success); 231 * @param glyphStorage - the glyph storage object. The glyph positions will be updated as needed. 236 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
KhmerLayoutEngine.cpp | 45 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) 65 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success); 66 glyphStorage.allocateAuxData(success); 75 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); 77 glyphStorage.adoptGlyphCount(outCharCount);
|
TibetanLayoutEngine.cpp | 51 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) 71 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success); 72 glyphStorage.allocateAuxData(success); 81 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage); 83 glyphStorage.adoptGlyphCount(outCharCount);
|
IndicLayoutEngine.cpp | 57 LEGlyphStorage &glyphStorage, LEErrorCode &success) 68 le_int32 retCount = OpenTypeLayoutEngine::glyphProcessing(chars, offset, count, max, rightToLeft, glyphStorage, success); 75 IndicReordering::finalReordering(glyphStorage,retCount); 76 IndicReordering::applyPresentationForms(glyphStorage,retCount); 77 OpenTypeLayoutEngine::glyphSubstitution(count,max, rightToLeft, glyphStorage, success); 79 IndicReordering::adjustMPres(fMPreFixups, glyphStorage, success); 88 LEUnicode *&outChars, LEGlyphStorage &glyphStorage, LEErrorCode &success) 108 glyphStorage.allocateGlyphArray(worstCase, rightToLeft, success); 109 glyphStorage.allocateAuxData(success); 121 outCharCount = IndicReordering::v2process(&chars[offset], count, fScriptCode, outChars, glyphStorage); [all...] |
OpenTypeLayoutEngine.h | 280 LEUnicode *&/*outChars*/, LEGlyphStorage &glyphStorage, LEErrorCode &success); 312 LEGlyphStorage &glyphStorage, LEErrorCode &success); 314 virtual le_int32 glyphSubstitution(le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success); 341 virtual le_int32 glyphPostProcessing(LEGlyphStorage &tempGlyphStorage, LEGlyphStorage &glyphStorage, LEErrorCode &success); 365 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success); 382 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
ContextualGlyphInsertionProc2.cpp | 41 void ContextualGlyphInsertionProcessor2::doInsertion(LEGlyphStorage &glyphStorage, 48 LEGlyphID *insertGlyphs = glyphStorage.insertGlyphs(atGlyph, count + 1, success); 61 insertGlyphs[targetIndex++] = glyphStorage[atGlyph]; 64 insertGlyphs[count] = glyphStorage[atGlyph]; 70 glyphStorage.applyInsertions(); 73 le_uint16 ContextualGlyphInsertionProcessor2::processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, 88 doInsertion(glyphStorage, markGlyph, markIndex, count, isKashidaLike, isBefore, success); 96 doInsertion(glyphStorage, currGlyph, currIndex, count, isKashidaLike, isBefore, success);
|
GlyphSubstitutionTables.cpp | 21 LEGlyphStorage &glyphStorage, 37 return processor.process(glyphStorage, NULL, rightToLeft, glyphDefinitionTableHeader, NULL, success);
|
IndicRearrangementProcessor.h | 30 virtual ByteOffset processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex index); 34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
|
IndicRearrangementProcessor2.h | 30 virtual le_uint16 processStateEntry(LEGlyphStorage &glyphStorage, le_int32 &currGlyph, EntryTableIndex2 index, LEErrorCode &success); 34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
|
ThaiLayoutEngine.h | 104 * @param glyphStorage - the glyph storage object. The glyph and char index arrays will be set. 116 LEGlyphStorage &glyphStorage, LEErrorCode &success); 132 * @param glyphStorage - the object which holds the per-glyph storage. The glyph positions will be 138 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
|
ArabicLayoutEngine.cpp | 71 LEGlyphStorage &glyphStorage, LEErrorCode &success) 89 glyphStorage.allocateGlyphArray(count, rightToLeft, success); 90 glyphStorage.allocateAuxData(success); 97 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage); 102 ArabicShaping::shape(chars, offset, count, max, rightToLeft, glyphStorage); 108 LEGlyphStorage &glyphStorage, LEErrorCode &success) 120 OpenTypeLayoutEngine::adjustGlyphPositions(chars, offset, count, reverse, glyphStorage, success); 123 adjustMarkGlyphs(glyphStorage, &filter, success); 128 adjustMarkGlyphs(&chars[offset], count, reverse, glyphStorage, &filter, success); 146 le_int32 UnicodeArabicOpenTypeLayoutEngine::glyphPostProcessing(LEGlyphStorage &tempGlyphStorage, LEGlyphStorage &glyphStorage, LEErrorCode &success [all...] |
HanLayoutEngine.cpp | 55 LEUnicode *&/*outChars*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) 66 glyphStorage.allocateGlyphArray(count, FALSE, success); 67 glyphStorage.allocateAuxData(success); 78 glyphStorage.setAuxData(i, features, success);
|
MPreFixups.h | 32 void apply(LEGlyphStorage &glyphStorage, LEErrorCode& success);
|
SegmentArrayProcessor.cpp | 35 void SegmentArrayProcessor::process(LEGlyphStorage &glyphStorage, LEErrorCode &success) 38 le_int32 glyphCount = glyphStorage.getGlyphCount(); 42 LEGlyphID thisGlyph = glyphStorage[glyph]; 52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
SegmentArrayProcessor.h | 28 virtual void process(LEGlyphStorage &glyphStorage, LEErrorCode &success);
|