/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 | 25 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
|
D | textblob.cpp | 81 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/ |
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/text/ |
D | GrAtlasTextBlob_regenInBatch.cpp | 190 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()
|
D | GrAtlasTextBlob.cpp | 39 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()
|
D | GrAtlasTextBlob.h | 533 GrGlyph** fGlyphs; variable
|
/external/skia/src/fonts/ |
D | SkGScalerContext.cpp | 239 return fGlyphs[index].fAdvance; 244 return fGlyphs[index].fPath; 254 Glyph* fGlyphs;
|
/external/skia/bench/ |
D | TextBlobBench.cpp | 69 SkTDArray<uint16_t> fGlyphs; member in TextBlobBench
|
/external/icu/icu4c/source/layoutex/ |
D | ParagraphLayout.cpp | 1273 LE_DELETE_ARRAY(fGlyphs); in ~VisualRun()
|