Searched refs:firstGlyph (Results 1 - 22 of 22) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DIndicRearrangementProcessor.cpp62 firstGlyph = 0;
74 firstGlyph = currGlyph;
107 a = glyphStorage[firstGlyph];
108 ia = glyphStorage.getCharIndex(firstGlyph, success);
109 x = firstGlyph + 1;
127 while (x >= firstGlyph) {
134 glyphStorage[firstGlyph] = d;
135 glyphStorage.setCharIndex(firstGlyph, id, success);
139 a = glyphStorage[firstGlyph];
140 ia = glyphStorage.getCharIndex(firstGlyph, succes
[all...]
H A DIndicRearrangementProcessor2.cpp59 firstGlyph = 0;
72 firstGlyph = currGlyph;
104 a = glyphStorage[firstGlyph];
105 ia = glyphStorage.getCharIndex(firstGlyph, success);
106 x = firstGlyph + 1;
124 while (x >= firstGlyph) {
131 glyphStorage[firstGlyph] = d;
132 glyphStorage.setCharIndex(firstGlyph, id, success);
136 a = glyphStorage[firstGlyph];
137 ia = glyphStorage.getCharIndex(firstGlyph, succes
[all...]
H A DTrimmedArrayProcessor.cpp50 : NonContextualGlyphSubstitutionProcessor(morphSubtableHeader, success), firstGlyph(0), lastGlyph(0)
60 firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph);
61 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
78 if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) {
79 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]);
H A DTrimmedArrayProcessor2.cpp55 firstGlyph = SWAPW(trimmedArrayLookupTable->firstGlyph);
56 lastGlyph = firstGlyph + SWAPW(trimmedArrayLookupTable->glyphCount);
74 if ((ttGlyph > firstGlyph) && (ttGlyph < lastGlyph)) {
75 TTGlyphID newGlyph = SWAPW(valueArray(ttGlyph - firstGlyph, success));
H A DStateTableProcessor.cpp59 firstGlyph = SWAPW(classTable->firstGlyph);
60 lastGlyph = firstGlyph + SWAPW(classTable->nGlyphs);
93 } else if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) {
94 classCode = classTable->classArray[glyphCode - firstGlyph];
H A DOpenTypeTables.h64 TTGlyphID firstGlyph; member in struct:GlyphRangeRecord
H A DTrimmedArrayProcessor.h77 TTGlyphID firstGlyph; member in class:TrimmedArrayProcessor
H A DSegmentArrayProcessor.cpp71 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph); local
76 TTGlyphID newGlyph = SWAPW(glyphArray(LE_GET_GLYPH(thisGlyph) - firstGlyph, success));
H A DSegmentArrayProcessor2.cpp71 TTGlyphID firstGlyph = SWAPW(lookupSegment->firstGlyph); local
76 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]);
H A DIndicRearrangementProcessor.h79 le_int32 firstGlyph; member in class:IndicRearrangementProcessor
H A DIndicRearrangementProcessor2.h79 le_int32 firstGlyph; member in class:IndicRearrangementProcessor2
H A DTrimmedArrayProcessor2.h77 TTGlyphID firstGlyph; member in class:TrimmedArrayProcessor2
H A DLookupTables.h65 TTGlyphID firstGlyph; member in struct:LookupSegment
114 TTGlyphID firstGlyph; member in struct:TrimmedArrayLookupTable
H A DContextualGlyphSubstProc2.cpp151 TTGlyphID firstGlyph = SWAPW(lookupTable8->firstGlyph);
153 TTGlyphID lastGlyph = firstGlyph + glyphCount;
155 if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) {
157 newGlyph = SWAPW(valueArray(glyphCode - firstGlyph, success));
H A DClassDefinitionTables.cpp99 TTGlyphID firstGlyph = SWAPW(startGlyph); local
100 TTGlyphID lastGlyph = firstGlyph + count;
102 if (LE_SUCCESS(success) && ttGlyphID >= firstGlyph && ttGlyphID < lastGlyph) {
103 return SWAPW( classValueArrayRef(ttGlyphID - firstGlyph, success) );
H A DStateTableProcessor.h72 TTGlyphID firstGlyph; member in class:StateTableProcessor
H A DStateTables.h110 TTGlyphID firstGlyph; member in struct:ClassTable
H A DPairPositioningSubtables.cpp77 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); local
78 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success);
127 LEGlyphID firstGlyph = glyphIterator->getCurrGlyphID(); local
128 le_int32 coverageIndex = getGlyphCoverage(base, firstGlyph, success);
140 le_int32 class1 = classDef1->getGlyphClass(firstGlyph);
H A DStateTableProcessor2.cpp201 TTGlyphID firstGlyph = SWAPW(lookupTable8->firstGlyph); local
202 TTGlyphID lastGlyph = firstGlyph + SWAPW(lookupTable8->glyphCount);
218 } else if ((glyphCode >= firstGlyph) && (glyphCode < lastGlyph)) {
219 classCode = SWAPW(lookupTable8->valueArray[glyphCode - firstGlyph]);
H A DCoverageTables.cpp110 TTGlyphID firstInRange = SWAPW(rangeRecordArray[rangeIndex].firstGlyph);
H A DLookupTables.cpp78 if (SWAPW(entry->firstGlyph) <= ttGlyph) {
H A DOpenTypeUtilities.cpp134 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) {
141 if (SWAPW(records(range + probe,success).firstGlyph) <= glyphID) {
146 if (SWAPW(records(range,success).firstGlyph) <= glyphID && SWAPW(records(range,success).lastGlyph) >= glyphID) {

Completed in 42 milliseconds