Home
last modified time | relevance | path

Searched refs:fGlyphs (Results 1 – 13 of 13) 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.cpp24 fGlyphs.append(p.textToGlyphs(txt, txtLen, NULL)); in TextBlobShaderGM()
25 p.textToGlyphs(txt, txtLen, fGlyphs.begin()); in TextBlobShaderGM()
38 int glyphCount = fGlyphs.count(); in onOnceBeforeDraw()
42 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
45 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
51 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t)); in onOnceBeforeDraw()
103 SkTDArray<uint16_t> fGlyphs; member in TextBlobShaderGM
Dtextblob.cpp76 fGlyphs.append(glyphCount); in TextBlobGM()
77 p.textToGlyphs(txt, txtLen, fGlyphs.begin()); in TextBlobGM()
125 if (count > fGlyphs.count() - currentGlyph) { in makeBlob()
126 count = fGlyphs.count() - currentGlyph; in makeBlob()
143 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
153 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
165 memcpy(buf.glyphs, fGlyphs.begin() + currentGlyph, count * sizeof(uint16_t)); in makeBlob()
179 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/
DGrTextBlobCache.cpp30 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount); in createBlob()
31 cacheBlob->fRuns = reinterpret_cast<BitmapTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount); in createBlob()
DGrStencilAndCoverTextContext.cpp296 fGlyphs = get_gr_glyphs(fContext, fGlyphCache->getScalerContext()->getTypeface(), in init()
365 fGlyphs = canUseRawPaths ? in init()
435 fDrawTarget->drawPaths(&fPipelineBuilder, pp, fGlyphs, in flush()
474 fGlyphs->unref(); in finish()
475 fGlyphs = NULL; in finish()
DGrStencilAndCoverTextContext.h60 GrPathRange* fGlyphs; variable
DGrAtlasTextContext.h196 GrGlyph** fGlyphs; member
DGrAtlasTextContext.cpp1370 blob->fGlyphs[subRun->fGlyphEndIndex] = glyph; in appendGlyphCommon()
1650 glyph = blob->fGlyphs[glyphOffset]; in generateGeometry()
1651 blob->fGlyphs[glyphOffset] = strike->getGlyph(glyph->fPackedID, in generateGeometry()
1654 glyph = blob->fGlyphs[glyphOffset]; in generateGeometry()
/external/skia/src/fonts/
DSkGScalerContext.cpp241 return fGlyphs[index].fAdvance;
246 return fGlyphs[index].fPath;
256 Glyph* fGlyphs;
/external/skia/bench/
DTextBlobBench.cpp65 SkTDArray<uint16_t> fGlyphs; member in TextBlobBench
/external/icu/icu4c/source/layoutex/
DParagraphLayout.cpp1273 LE_DELETE_ARRAY(fGlyphs); in ~VisualRun()