/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/chromium_org/third_party/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() 107 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 | 330 const LEGlyphID *fGlyphs; variable 690 return fGlyphs; in getGlyphs() 719 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun() 725 …: UObject(), fFont(NULL), fDirection(UBIDI_LTR), fGlyphCount(0), fGlyphs(NULL), fPositions(NULL), … in VisualRun() 733 fGlyphs(glyphs), fPositions(positions), fGlyphToCharMap(glyphToCharMap) in VisualRun()
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrStencilAndCoverTextContext.cpp | 279 fGlyphs = get_gr_glyphs(fContext, fGlyphCache->getScalerContext()->getTypeface(), in init() 350 fGlyphs = canUseRawPaths ? in init() 406 fDrawTarget->drawPaths(fGlyphs, fIndexBuffer, fPendingGlyphCount, in flush() 415 fGlyphs->unref(); in finish() 416 fGlyphs = NULL; in finish()
|
D | GrStencilAndCoverTextContext.h | 76 GrPathRange* fGlyphs; variable
|
/external/skia/src/fonts/ |
D | SkGScalerContext.cpp | 239 return fGlyphs[index].fAdvance; 244 return fGlyphs[index].fPath; 254 Glyph* fGlyphs;
|
/external/chromium_org/third_party/skia/src/fonts/ |
D | SkGScalerContext.cpp | 241 return fGlyphs[index].fAdvance; 246 return fGlyphs[index].fPath; 256 Glyph* fGlyphs;
|
/external/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 1273 LE_DELETE_ARRAY(fGlyphs); in ~VisualRun()
|