/external/icu/icu4c/source/layout/ |
D | LEGlyphStorage.cpp | 22 : 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 …]
|
D | LEGlyphStorage.h | 49 LEGlyphID *fGlyphs; variable 540 return fGlyphs[glyphIndex];
|
/external/skia/gm/ |
D | textblobshader.cpp | 24 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
|
D | textblob.cpp | 76 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/ |
D | ParagraphLayout.h | 337 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/ |
D | GrTextBlobCache.cpp | 30 cacheBlob->fGlyphs = reinterpret_cast<GrGlyph**>(cacheBlob->fVertices + verticesCount); in createBlob() 31 cacheBlob->fRuns = reinterpret_cast<BitmapTextBlob::Run*>(cacheBlob->fGlyphs + glyphCount); in createBlob()
|
D | GrStencilAndCoverTextContext.cpp | 296 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()
|
D | GrStencilAndCoverTextContext.h | 60 GrPathRange* fGlyphs; variable
|
D | GrAtlasTextContext.h | 196 GrGlyph** fGlyphs; member
|
D | GrAtlasTextContext.cpp | 1370 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/ |
D | SkGScalerContext.cpp | 241 return fGlyphs[index].fAdvance; 246 return fGlyphs[index].fPath; 256 Glyph* fGlyphs;
|
/external/skia/bench/ |
D | TextBlobBench.cpp | 65 SkTDArray<uint16_t> fGlyphs; member in TextBlobBench
|
/external/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 1273 LE_DELETE_ARRAY(fGlyphs); in ~VisualRun()
|