/frameworks/base/libs/hwui/font/ |
Font.h | 84 void render(const SkPaint* paint, const glyph_t* glyphs, 87 void render(const SkPaint* paint, const glyph_t* glyphs, 113 void precache(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs); 115 void render(const SkPaint* paint, const glyph_t* glyphs, 119 void measure(const SkPaint* paint, const glyph_t* glyphs, 124 CachedGlyphInfo* cacheGlyph(const SkPaint* paint, glyph_t glyph, bool precaching); 143 CachedGlyphInfo* getCachedGlyph(const SkPaint* paint, glyph_t textUnit, 150 DefaultKeyedVector<glyph_t, CachedGlyphInfo*> mCachedGlyphs;
|
FontUtil.h | 43 typedef uint16_t glyph_t; typedef
|
Font.cpp | 277 CachedGlyphInfo* Font::getCachedGlyph(const SkPaint* paint, glyph_t textUnit, bool precaching) { 294 void Font::render(const SkPaint* paint, const glyph_t* glyphs, 300 void Font::render(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs, 328 glyph_t glyph = *(glyphs++); 348 void Font::measure(const SkPaint* paint, const glyph_t* glyphs, 358 void Font::precache(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs) { 365 glyph_t glyph = *(glyphs++); 377 void Font::render(const SkPaint* paint, const glyph_t* glyphs, 397 glyph_t glyph = *(glyphs++); 464 CachedGlyphInfo* Font::cacheGlyph(const SkPaint* paint, glyph_t glyph, bool precaching) [all...] |
/external/icu/icu4c/source/samples/layout/ |
GnomeFontInstance.cpp | 181 cairo_glyph_t *glyph_t = LE_NEW_ARRAY(cairo_glyph_t, glyphCount); local 188 glyph_t[out].index = glyph; 189 glyph_t[out].x = x + positions[in*2]; 190 glyph_t[out].y = y + positions[in*2 + 1]; 198 cairo_show_glyphs(cairo, glyph_t, out); 200 LE_DELETE_ARRAY(glyph_t);
|
/frameworks/base/libs/hwui/ |
TextDropShadowCache.h | 42 ShadowText(const SkPaint* paint, float radius, uint32_t glyphCount, const glyph_t* srcGlyphs, 72 glyphs = reinterpret_cast<const glyph_t*>(str.string()); 87 const glyph_t* glyphs; 133 ShadowTexture* get(const SkPaint* paint, const glyph_t* text,
|
FontRenderer.h | 107 void precache(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs, const SkMatrix& matrix); 110 bool renderPosText(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs, 114 bool renderTextOnPath(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs, 128 DropShadow renderDropShadow(const SkPaint* paint, const glyph_t *glyphs, int numGlyphs,
|
RecordedOp.h | 385 TextOp(BASE_PARAMS, const glyph_t* glyphs, const float* positions, int glyphCount, 393 const glyph_t* glyphs; 403 const glyph_t* glyphs, int glyphCount, const SkPath* path, float hOffset, float vOffset) 410 const glyph_t* glyphs;
|
TextDropShadowCache.cpp | 78 deltaInt = memcmp(lhs.glyphs, rhs.glyphs, lhs.glyphCount * sizeof(glyph_t)); 148 ShadowTexture* TextDropShadowCache::get(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs,
|
OpenGLRenderer.h | 194 void drawTextOnPath(const glyph_t* glyphs, int bytesCount, int count, const SkPath* path, 196 void drawText(const glyph_t* glyphs, int bytesCount, int count, float x, float y, 650 void drawTextShadow(const SkPaint* paint, const glyph_t* glyphs, int count,
|
FontRenderer.cpp | 560 FontRenderer::DropShadow FontRenderer::renderDropShadow(const SkPaint* paint, const glyph_t *glyphs, 646 void FontRenderer::precache(const SkPaint* paint, const glyph_t* glyphs, int numGlyphs, 656 bool FontRenderer::renderPosText(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs, 674 bool FontRenderer::renderTextOnPath(const SkPaint* paint, const Rect* clip, const glyph_t* glyphs,
|
DisplayListOp.h | [all...] |
DisplayListCanvas.cpp | 429 DrawOp* op = new (alloc()) DrawTextOnPathOp(refBuffer<glyph_t>(glyphs, count), 446 DrawOp* op = new (alloc()) DrawTextOp(refBuffer<glyph_t>(glyphs, count), bytesCount, count,
|
RecordingCanvas.cpp | 550 glyphs = refBuffer<glyph_t>(glyphs, glyphCount); 565 glyphs = refBuffer<glyph_t>(glyphs, glyphCount);
|
OpenGLRenderer.cpp | [all...] |
/frameworks/base/libs/hwui/tests/microbench/ |
FontBench.cpp | 36 std::vector<glyph_t> glyphs;
|
/frameworks/base/libs/hwui/tests/unit/ |
FontRendererTests.cpp | 39 std::vector<glyph_t> glyphs;
|
TextDropShadowCacheTests.cpp | 39 std::vector<glyph_t> glyphs;
|
/frameworks/base/libs/hwui/tests/common/ |
TestUtils.cpp | 64 std::vector<glyph_t>* outGlyphs, std::vector<float>* outPositions, 72 glyph_t glyph = autoCache.getCache()->unicharToGlyph(unichar);
|
TestUtils.h | 227 std::vector<glyph_t>* outGlyphs, std::vector<float>* outPositions,
|