Home
last modified time | relevance | path

Searched refs:fGlyphs (Results 1 – 11 of 11) sorted by relevance

/external/icu/icu4c/source/layout/
DLEGlyphStorage.cpp22 : fGlyphCount(0), fGlyphs(NULL), fCharIndices(NULL), fPositions(NULL), in LEGlyphStorage()
57 if (fGlyphs != NULL) { in reset()
58 LE_DELETE_ARRAY(fGlyphs); in reset()
59 fGlyphs = NULL; in reset()
76 if (fGlyphs == NULL) { in allocateGlyphArray()
78 fGlyphs = LE_NEW_ARRAY(LEGlyphID, fGlyphCount); in allocateGlyphArray()
80 if (fGlyphs == NULL) { in allocateGlyphArray()
90 LE_DELETE_ARRAY(fGlyphs); in allocateGlyphArray()
91 fGlyphs = NULL; in allocateGlyphArray()
116 LE_DELETE_ARRAY(fGlyphs); in allocateGlyphArray()
[all …]
DLEGlyphStorage.h49 LEGlyphID *fGlyphs; variable
540 return fGlyphs[glyphIndex];
/external/skia/gm/
Dtextblobshader.cpp25 fGlyphs.append(p.textToGlyphs(txt, txtLen, nullptr)); in TextBlobShaderGM()
26 p.textToGlyphs(txt, txtLen, fGlyphs.begin()); in TextBlobShaderGM()
40 int glyphCount = fGlyphs.count(); in onOnceBeforeDraw()
44 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
47 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
53 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
105 SkTDArray<uint16_t> fGlyphs; member in TextBlobShaderGM
Dtextblob.cpp81 fGlyphs.append(glyphCount); in onOnceBeforeDraw()
82 p.textToGlyphs(fText, txtLen, fGlyphs.begin()); in onOnceBeforeDraw()
129 if (count > fGlyphs.count() - currentGlyph) { in makeBlob()
130 count = fGlyphs.count() - currentGlyph; in makeBlob()
147 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
157 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
169 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
183 SkTDArray<uint16_t> fGlyphs; member in TextBlobGM
/external/icu/icu4c/source/layoutex/layout/
DParagraphLayout.h337 const LEGlyphID *fGlyphs; variable
697 return fGlyphs; in getGlyphs()
726 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun()
732 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun()
740 fGlyphs(glyphs), fPositions(positions), fGlyphToCharMap(glyphToCharMap) in VisualRun()
/external/skia/src/gpu/text/
DGrAtlasTextBlob_regenInBatch.cpp190 GrGlyph::PackedID id = fGlyphs[glyphOffset]->fPackedID; in regenInBatch()
191 fGlyphs[glyphOffset] = strike->getGlyph(id, info->maskFormat(), *scaler); in regenInBatch()
192 SkASSERT(id == fGlyphs[glyphOffset]->fPackedID); in regenInBatch()
194 glyph = fGlyphs[glyphOffset]; in regenInBatch()
DGrAtlasTextBlob.cpp39 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount); in Create()
40 cacheBlob->fRuns = reinterpret_cast<GrAtlasTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount); in Create()
151 fGlyphs[subRun->glyphEndIndex()] = glyph; in appendGlyph()
DGrAtlasTextBlob.h533 GrGlyph** fGlyphs; variable
/external/skia/src/fonts/
DSkGScalerContext.cpp239 return fGlyphs[index].fAdvance;
244 return fGlyphs[index].fPath;
254 Glyph* fGlyphs;
/external/skia/bench/
DTextBlobBench.cpp69 SkTDArray<uint16_t> fGlyphs; member in TextBlobBench
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp1273 LE_DELETE_ARRAY(fGlyphs); in ~VisualRun()