Home
last modified time | relevance | path

Searched refs:coverageIndex (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4c/source/layout/
DCursiveAttachmentSubtables.cpp20 le_int32 coverageIndex = getGlyphCoverage(base, glyphID, success); in process() local
24 entryExitRecordsArrayRef(base, success, entryExitRecords, coverageIndex); in process()
26 if (coverageIndex < 0 || coverageIndex >= eeCount || LE_FAILURE(success)) { in process()
32 Offset entryOffset = SWAPW(entryExitRecords[coverageIndex].entryAnchor); in process()
33 Offset exitOffset = SWAPW(entryExitRecords[coverageIndex].exitAnchor); in process()
DSinglePositioningSubtables.cpp47 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
49 if (coverageIndex >= 0) { in process()
61 le_int16 coverageIndex = (le_int16) getGlyphCoverage(base, glyph, success); in process() local
63 if (coverageIndex >= 0) { in process()
64 …valueRecordArray[0].adjustPosition(coverageIndex, SWAPW(valueFormat), (const char *) this, *glyphI… in process()
DSingleSubstitutionSubtables.cpp46 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
48 if (coverageIndex >= 0) { in process()
64 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
66 if (coverageIndex >= 0) { in process()
67 TTGlyphID substitute = SWAPW(substituteArray[coverageIndex]); in process()
DMarkArrays.cpp16 le_int32 MarkArray::getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *f… in getMarkClass() argument
21 if (coverageIndex >= 0) { in getMarkClass()
24 if (coverageIndex < mCount) { in getMarkClass()
25 const MarkRecord *markRecord = &markRecordArray[coverageIndex]; in getMarkClass()
DAlternateSubstSubtables.cpp22 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
24 if (coverageIndex >= 0 && LE_SUCCESS(success)) { in process()
27 if (coverageIndex < altSetCount) { in process()
28 Offset alternateSetTableOffset = SWAPW(alternateSetTableOffsetArray[coverageIndex]); in process()
DMultipleSubstSubtables.cpp36 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
44 if (coverageIndex >= 0 && coverageIndex < seqCount) { in process()
45 Offset sequenceTableOffset = SWAPW(sequenceTableOffsetArray[coverageIndex]); in process()
DContextualSubstSubtables.cpp198 le_int32 coverageIndex = getGlyphCoverage(lookupProcessor->getReference(), glyph, success); in process() local
200 if (coverageIndex >= 0) { in process()
203 if (coverageIndex < srSetCount) { in process()
204 Offset subRuleSetTableOffset = SWAPW(subRuleSetTableOffsetArray[coverageIndex]); in process()
248 le_int32 coverageIndex = getGlyphCoverage(lookupProcessor->getReference(), glyph, success); in process() local
250 if (coverageIndex >= 0) { in process()
380 le_int32 coverageIndex = getGlyphCoverage(lookupProcessor->getReference(), glyph, success); in process() local
382 if (coverageIndex >= 0) { in process()
385 if (coverageIndex < srSetCount) { in process()
386 … Offset chainSubRuleSetTableOffset = SWAPW(chainSubRuleSetTableOffsetArray[coverageIndex]); in process()
[all …]
DPairPositioningSubtables.cpp53 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success); in process() local
56 if (coverageIndex >= 0 && glyphIterator->next()) { in process()
57 Offset pairSetTableOffset = SWAPW(pairSetTableOffsetArray[coverageIndex]); in process()
96 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success); in process() local
99 if (coverageIndex >= 0 && glyphIterator->next()) { in process()
DLigatureSubstSubtables.cpp19 le_int32 coverageIndex = getGlyphCoverage(base, glyph, success); in process() local
21 if (coverageIndex >= 0) { in process()
22 Offset ligSetTableOffset = SWAPW(ligSetTableOffsetArray[coverageIndex]); in process()
DMarkArrays.h32 …le_int32 getMarkClass(LEGlyphID glyphID, le_int32 coverageIndex, const LEFontInstance *fontInstanc…