Searched defs:thisGlyph (Results 1 - 10 of 10) sorted by relevance
/openjdk7/jdk/src/share/native/sun/font/layout/ |
H A D | SimpleArrayProcessor2.cpp | 69 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 D | SegmentArrayProcessor.cpp | 67 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 D | SegmentArrayProcessor2.cpp | 67 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 D | SegmentSingleProcessor.cpp | 67 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 D | SegmentSingleProcessor2.cpp | 68 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 D | SimpleArrayProcessor.cpp | 68 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 D | TrimmedArrayProcessor.cpp | 75 LEGlyphID thisGlyph = glyphStorage[glyph]; local 76 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph); 81 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
H A D | TrimmedArrayProcessor2.cpp | 71 LEGlyphID thisGlyph = glyphStorage[glyph]; local 72 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph); 77 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
H A D | ContextualGlyphSubstProc.cpp | 86 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 D | ContextualGlyphSubstProc2.cpp | 85 LEGlyphID thisGlyph = glyphStorage[currGlyph]; local 86 TTGlyphID newGlyph = lookup(offset, thisGlyph, success); 87 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
|
Completed in 2591 milliseconds