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

  /external/icu/icu4c/source/layout/
ContextualGlyphSubstProc2.cpp 54 TTGlyphID newGlyph = lookup(offset, mGlyph, success);
55 glyphStorage[markGlyph] = LE_SET_GLYPH(mGlyph, newGlyph);
61 TTGlyphID newGlyph = lookup(offset, thisGlyph, success);
62 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
78 TTGlyphID newGlyph = 0xFFFF;
79 if(LE_FAILURE(success)) return newGlyph;
81 if(LE_FAILURE(success)) return newGlyph;
90 if(LE_FAILURE(success)) return newGlyph;
92 newGlyph = SWAPW(lookupTable0->valueArray(glyphCode, success));
102 newGlyph = SWAPW(segment->value)
    [all...]
SegmentSingleProcessor2.cpp 47 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
49 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SimpleArrayProcessor.cpp 45 TTGlyphID newGlyph = SWAPW(valueArray.getObject(LE_GET_GLYPH(thisGlyph),success));
46 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SimpleArrayProcessor2.cpp 46 TTGlyphID newGlyph = SWAPW(valueArray(LE_GET_GLYPH(thisGlyph),success));
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
ContextualGlyphSubstProc.cpp 55 TTGlyphID newGlyph = SWAPW(int16Table.getObject(markOffset + LE_GET_GLYPH(mGlyph), success)); // whew.
57 glyphStorage[markGlyph] = LE_SET_GLYPH(mGlyph, newGlyph);
62 TTGlyphID newGlyph = SWAPW(int16Table.getObject(currOffset + LE_GET_GLYPH(thisGlyph), success)); // whew.
64 glyphStorage[currGlyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentArrayProcessor.cpp 51 TTGlyphID newGlyph = SWAPW(glyphArray(LE_GET_GLYPH(thisGlyph) - firstGlyph, success));
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentArrayProcessor2.cpp 51 TTGlyphID newGlyph = SWAPW(glyphArray[LE_GET_GLYPH(thisGlyph) - firstGlyph]);
53 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
SegmentSingleProcessor.cpp 46 TTGlyphID newGlyph = (TTGlyphID) LE_GET_GLYPH(thisGlyph) + SWAPW(lookupSegment->value);
48 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
TrimmedArrayProcessor.cpp 54 TTGlyphID newGlyph = SWAPW(trimmedArrayLookupTable->valueArray[ttGlyph - firstGlyph]);
56 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
TrimmedArrayProcessor2.cpp 50 TTGlyphID newGlyph = SWAPW(valueArray(ttGlyph - firstGlyph, success));
52 glyphStorage[glyph] = LE_SET_GLYPH(thisGlyph, newGlyph);
  /frameworks/base/libs/hwui/font/
Font.cpp 477 CachedGlyphInfo* newGlyph = new CachedGlyphInfo();
478 mCachedGlyphs.add(glyph, newGlyph);
482 newGlyph->mIsValid = false;
483 newGlyph->mGlyphIndex = skiaGlyph.fID;
485 updateGlyphCache(paint, skiaGlyph, autoCache.getCache(), newGlyph, precaching);
487 return newGlyph;
  /frameworks/rs/
rsFont.cpp 285 CachedGlyphInfo *newGlyph = new CachedGlyphInfo();
286 mCachedGlyphs.add(glyph, newGlyph);
288 newGlyph->mGlyphIndex = FT_Get_Char_Index(mFace, glyph);
289 newGlyph->mIsValid = false;
291 updateGlyphCache(newGlyph);
293 return newGlyph;

Completed in 605 milliseconds