Searched refs:thisGlyph (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DSegmentSingleProcessor2.cpp68 LEGlyphID thisGlyph = glyphStorage[glyph]; local
69 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success);
72 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
74 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSimpleArrayProcessor.cpp68 LEGlyphID thisGlyph = glyphStorage[glyph]; local
69 if (LE_GET_GLYPH(thisGlyph) < 0xFFFF) {
70 TTGlyphID newGlyph = SWAPW(valueArray.getObject(LE_GET_GLYPH(thisGlyph),success));
71 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSimpleArrayProcessor2.cpp69 LEGlyphID thisGlyph = glyphStorage[glyph]; local
70 if (LE_GET_GLYPH(thisGlyph) < 0xFFFF) {
71 TTGlyphID newGlyph = SWAPW(valueArray(LE_GET_GLYPH(thisGlyph),success));
73 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentArrayProcessor.cpp67 LEGlyphID thisGlyph = glyphStorage[glyph]; local
68 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success);
76 TTGlyphID newGlyph = SWAPW(glyphArray(LE_GET_GLYPH(thisGlyph) - firstGlyph, success));
77 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentArrayProcessor2.cpp67 LEGlyphID thisGlyph = glyphStorage[glyph]; local
68 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segmentArrayLookupTable, segments, thisGlyph, success);
76 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]);
78 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DSegmentSingleProcessor.cpp67 LEGlyphID thisGlyph = glyphStorage[glyph]; local
68 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segmentSingleLookupTable, segments, thisGlyph, success);
71 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
73 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DTrimmedArrayProcessor.cpp75 LEGlyphID thisGlyph = glyphStorage[glyph]; local
76 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph);
81 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DTrimmedArrayProcessor2.cpp71 LEGlyphID thisGlyph = glyphStorage[glyph]; local
72 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph);
77 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DContextualGlyphSubstProc.cpp86 LEGlyphID thisGlyph = glyphStorage[currGlyph]; local
87 TTGlyphID newGlyph = SWAPW(int16Table.getObject(currOffset + LE_GET_GLYPH(thisGlyph), success)); // whew.
89 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
H A DContextualGlyphSubstProc2.cpp85 LEGlyphID thisGlyph = glyphStorage[currGlyph]; local
86 TTGlyphID newGlyph = lookup(offset, thisGlyph, success);
87 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);

Completed in 59 milliseconds