Home
last modified time | relevance | path

Searched refs:firstGlyph (Results 1 – 23 of 23) sorted by relevance

/external/icu/icu4c/source/layout/
DIndicRearrangementProcessor.cpp37 firstGlyph = 0; in beginStateTable()
49 firstGlyph = currGlyph; in processStateEntry()
82 a = glyphStorage[firstGlyph]; in doRearrangementAction()
83 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
84 x = firstGlyph + 1; in doRearrangementAction()
102 while (x >= firstGlyph) { in doRearrangementAction()
109 glyphStorage[firstGlyph] = d; in doRearrangementAction()
110 glyphStorage.setCharIndex(firstGlyph, id, success); in doRearrangementAction()
114 a = glyphStorage[firstGlyph]; in doRearrangementAction()
115 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
[all …]
DIndicRearrangementProcessor2.cpp34 firstGlyph = 0; in beginStateTable()
47 firstGlyph = currGlyph; in processStateEntry()
79 a = glyphStorage[firstGlyph]; in doRearrangementAction()
80 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
81 x = firstGlyph + 1; in doRearrangementAction()
99 while (x >= firstGlyph) { in doRearrangementAction()
106 glyphStorage[firstGlyph] = d; in doRearrangementAction()
107 glyphStorage.setCharIndex(firstGlyph, id, success); in doRearrangementAction()
111 a = glyphStorage[firstGlyph]; in doRearrangementAction()
112 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
[all …]
DTrimmedArrayProcessor.cpp25 …: NonContextualGlyphSubstitutionProcessor(morphSubtableHeader, success), firstGlyph(0), lastGlyph(… in TrimmedArrayProcessor()
35 firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph); in TrimmedArrayProcessor()
36 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount); in TrimmedArrayProcessor()
53 if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) { in process()
54 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]); in process()
DTrimmedArrayProcessor2.cpp30 firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph); in TrimmedArrayProcessor2()
31 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount); in TrimmedArrayProcessor2()
49 if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) { in process()
50 TTGlyphID newGlyph = SWAPW(valueArray(ttGlyph - firstGlyph, success)); in process()
DStateTableProcessor.cpp34 firstGlyph = SWAPW(classTable->firstGlyph); in StateTableProcessor()
35 lastGlyph = firstGlyph + SWAPW(classTable->nGlyphs); in StateTableProcessor()
68 } else if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) { in process()
69 classCode = classTable->classArray[glyphCode - firstGlyph]; in process()
DContextualGlyphSubstProc2.cpp126 TTGlyphID firstGlyph = SWAPW(lookupTable8->firstGlyph); in lookup() local
128 TTGlyphID lastGlyph = firstGlyph + glyphCount; in lookup()
130 if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) { in lookup()
132 newGlyph = SWAPW(valueArray(glyphCode - firstGlyph, success)); in lookup()
DPairPositioningSubtables.cpp52 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); in process() local
53 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success); in process()
95 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); in process() local
96 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success); in process()
103 le_int32 class1 = classDef1->getGlyphClass(firstGlyph); in process()
DSegmentArrayProcessor2.cpp46 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph); in process() local
51 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]); in process()
DSegmentArrayProcessor.cpp46 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph); in process() local
51 … TTGlyphID newGlyph = SWAPW(glyphArray(LE_GET_GLYPH(thisGlyph) - firstGlyph, success)); in process()
DClassDefinitionTables.cpp74 TTGlyphID firstGlyph = SWAPW(startGlyph); in getGlyphClass() local
75 TTGlyphID lastGlyph = firstGlyph + count; in getGlyphClass()
77 if (LE_SUCCESS(success) && ttGlyphID >= firstGlyph && ttGlyphID < lastGlyph) { in getGlyphClass()
78 return SWAPW( classValueArrayRef(ttGlyphID - firstGlyph, success) ); in getGlyphClass()
DStateTableProcessor2.cpp183 TTGlyphID firstGlyph = SWAPW(lookupTable8->firstGlyph); in process() local
184 TTGlyphID lastGlyph = firstGlyph + SWAPW(lookupTable8->glyphCount); in process()
200 } else if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) { in process()
201 classCode = SWAPW(lookupTable8->valueArray[glyphCode - firstGlyph]); in process()
DLookupTables.h40 TTGlyphID firstGlyph; member
89 TTGlyphID firstGlyph; member
DOpenTypeUtilities.cpp110 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) { in getGlyphRangeIndex()
117 if (SWAPW(records(range + probe,success).firstGlyph) <= glyphID) { in getGlyphRangeIndex()
122 …if (SWAPW(records(range,success).firstGlyph) <= glyphID && SWAPW(records(range,success).lastGlyph)… in getGlyphRangeIndex()
DOpenTypeTables.h39 TTGlyphID firstGlyph; member
DTrimmedArrayProcessor.h52 TTGlyphID firstGlyph;
DTrimmedArrayProcessor2.h52 TTGlyphID firstGlyph;
DIndicRearrangementProcessor2.h54 le_int32 firstGlyph;
DIndicRearrangementProcessor.h54 le_int32 firstGlyph;
DStateTableProcessor.h47 TTGlyphID firstGlyph; variable
DStateTables.h85 TTGlyphID firstGlyph; member
DCoverageTables.cpp85 TTGlyphID firstInRange = SWAPW(rangeRecordArray[rangeIndex].firstGlyph); in getGlyphCoverage()
DLookupTables.cpp53 if (SWAPW(entry->firstGlyph) <= ttGlyph) { in lookupSegment()
/external/mesa3d/include/GL/
Dglext.h12573 …Lenum fontTarget, const GLvoid *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyp…
12623 …Lenum fontTarget, const GLvoid *fontName, GLbitfield fontStyle, GLuint firstGlyph, GLsizei numGlyp…