HomeSort by relevance Sort by last modified time
    Searched refs:thisGlyph (Results 1 - 10 of 10) sorted by null

  /external/icu4c/layout/
SimpleArrayProcessor.cpp 42 LEGlyphID thisGlyph = glyphStorage[glyph];
43 if (LE_GET_GLYPH(thisGlyph) < 0xFFFF) {
44 TTGlyphID newGlyph = SWAPW(simpleArrayLookupTable->valueArray[LE_GET_GLYPH(thisGlyph)]);
46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SimpleArrayProcessor2.cpp 42 LEGlyphID thisGlyph = glyphStorage[glyph];
43 if (LE_GET_GLYPH(thisGlyph) < 0xFFFF) {
44 TTGlyphID newGlyph = SWAPW(simpleArrayLookupTable->valueArray[LE_GET_GLYPH(thisGlyph)]);
46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentArrayProcessor.cpp 43 LEGlyphID thisGlyph = glyphStorage[glyph];
44 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segments, thisGlyph);
52 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]);
54 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentArrayProcessor2.cpp 43 LEGlyphID thisGlyph = glyphStorage[glyph];
44 const LookupSegment *lookupSegment = segmentArrayLookupTable->lookupSegment(segments, thisGlyph);
52 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]);
54 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentSingleProcessor.cpp 43 LEGlyphID thisGlyph = glyphStorage[glyph];
44 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, thisGlyph);
47 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentSingleProcessor2.cpp 43 LEGlyphID thisGlyph = glyphStorage[glyph];
44 const LookupSegment *lookupSegment = segmentSingleLookupTable->lookupSegment(segments, thisGlyph);
47 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
TrimmedArrayProcessor.cpp 44 LEGlyphID thisGlyph = glyphStorage[glyph];
45 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph);
50 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
TrimmedArrayProcessor2.cpp 44 LEGlyphID thisGlyph = glyphStorage[glyph];
45 TTGlyphID ttGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph);
50 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
ContextualGlyphSubstProc.cpp 57 LEGlyphID thisGlyph = glyphStorage[currGlyph];
58 TTGlyphID newGlyph = SWAPW(table[LE_GET_GLYPH(thisGlyph)]);
60 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
ContextualGlyphSubstProc2.cpp 57 LEGlyphID thisGlyph = glyphStorage[currGlyph];
58 TTGlyphID newGlyph = lookup(offset, thisGlyph);
59 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);

Completed in 121 milliseconds