Home
last modified time | relevance | path

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

/external/icu4c/layout/
DIndicRearrangementProcessor.cpp34 firstGlyph = 0; in beginStateTable()
45 firstGlyph = currGlyph; in processStateEntry()
78 a = glyphStorage[firstGlyph]; in doRearrangementAction()
79 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
80 x = firstGlyph + 1; in doRearrangementAction()
98 while (x >= firstGlyph) { in doRearrangementAction()
105 glyphStorage[firstGlyph] = d; in doRearrangementAction()
106 glyphStorage.setCharIndex(firstGlyph, id, success); in doRearrangementAction()
110 a = glyphStorage[firstGlyph]; in doRearrangementAction()
111 ia = glyphStorage.getCharIndex(firstGlyph, success); in doRearrangementAction()
[all …]
DTrimmedArrayProcessor.cpp30 firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph); in TrimmedArrayProcessor()
31 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount); in TrimmedArrayProcessor()
47 if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) { in process()
48 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]); in process()
DStateTableProcessor.cpp33 firstGlyph = SWAPW(classTable->firstGlyph); in StateTableProcessor()
34 lastGlyph = firstGlyph + SWAPW(classTable->nGlyphs); in StateTableProcessor()
63 } else if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) { in process()
64 classCode = classTable->classArray[glyphCode - firstGlyph]; in process()
DClassDefinitionTables.cpp68 TTGlyphID firstGlyph = SWAPW(startGlyph); in getGlyphClass() local
69 TTGlyphID lastGlyph = firstGlyph + SWAPW(glyphCount); in getGlyphClass()
71 if (ttGlyphID >= firstGlyph && ttGlyphID < lastGlyph) { in getGlyphClass()
72 return SWAPW(classValueArray[ttGlyphID - firstGlyph]); in getGlyphClass()
DPairPositioningSubtables.cpp47 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); in process() local
48 le_int32 coverageIndex = getGlyphCoverage(firstGlyph); in process()
90 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); in process() local
91 le_int32 coverageIndex = getGlyphCoverage(firstGlyph); in process()
98 le_int32 class1 = classDef1->getGlyphClass(firstGlyph); in process()
DSegmentArrayProcessor.cpp47 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph); in process() local
52 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]); in process()
DLookupTables.h39 TTGlyphID firstGlyph; member
84 TTGlyphID firstGlyph; member
DOpenTypeUtilities.cpp93 if (SWAPW(records[extra].firstGlyph) <= glyphID) { in getGlyphRangeIndex()
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) { in getGlyphRangeIndex()
105 if (SWAPW(records[range].firstGlyph) <= glyphID && SWAPW(records[range].lastGlyph) >= glyphID) { in getGlyphRangeIndex()
DTrimmedArrayProcessor.h52 TTGlyphID firstGlyph;
DOpenTypeTables.h38 TTGlyphID firstGlyph; member
DStateTables.h42 TTGlyphID firstGlyph; member
DIndicRearrangementProcessor.h54 le_int32 firstGlyph;
DStateTableProcessor.h47 TTGlyphID firstGlyph; variable
DCoverageTables.cpp85 TTGlyphID firstInRange = SWAPW(rangeRecordArray[rangeIndex].firstGlyph); in getGlyphCoverage()
DLookupTables.cpp49 if (SWAPW(entry->firstGlyph) <= ttGlyph) { in lookupSegment()
/external/webkit/Source/WebKit/android/nav/
DSelectText.cpp262 uint16_t firstGlyph = first.fGlyphID; in isSpace() local
263 SkScalar firstWidth = mLastPaint.measureText(&firstGlyph, sizeof(firstGlyph)); in isSpace()