Searched defs:numGlyphs (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/cmds/screenrecord/
H A DFontBitmap.h6 static const uint32_t numGlyphs = 95; member in class:FontBitmap
/frameworks/base/libs/hwui/
H A DTextDropShadowCache.cpp172 int numGlyphs, float radius, const float* positions) {
180 len, numGlyphs, radius, positions);
171 get(const SkPaint* paint, const char* text, uint32_t len, int numGlyphs, float radius, const float* positions) argument
H A DFontRenderer.cpp595 uint32_t startIndex, uint32_t len, int numGlyphs, float radius, const float* positions) {
614 mCurrentFont->measure(paint, text, startIndex, len, numGlyphs, &bounds, positions);
646 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, penX, penY,
680 void FontRenderer::precache(const SkPaint* paint, const char* text, int numGlyphs, argument
683 font->precache(paint, text, numGlyphs);
691 uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y,
699 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, x, y, positions);
709 uint32_t startIndex, uint32_t len, int numGlyphs, const SkPath* path,
717 mCurrentFont->render(paint, text, startIndex, len, numGlyphs, path, hOffset, vOffset);
594 renderDropShadow(const SkPaint* paint, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, float radius, const float* positions) argument
690 renderPosText(const SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, int x, int y, const float* positions, Rect* bounds, Functor* functor, bool forceFinish) argument
708 renderTextOnPath(const SkPaint* paint, const Rect* clip, const char *text, uint32_t startIndex, uint32_t len, int numGlyphs, const SkPath* path, float hOffset, float vOffset, Rect* bounds, Functor* functor) argument
/frameworks/base/libs/hwui/font/
H A DFont.cpp300 int numGlyphs, int x, int y, const float* positions) {
301 render(paint, text, start, len, numGlyphs, x, y, FRAMEBUFFER, NULL,
306 int numGlyphs, const SkPath* path, float hOffset, float vOffset) {
307 if (numGlyphs == 0 || text == NULL || len == 0) {
334 while (glyphsCount < numGlyphs && penX < pathLength) {
356 int numGlyphs, Rect *bounds, const float* positions) {
362 render(paint, text, start, len, numGlyphs, 0, 0, MEASURE, NULL, 0, 0, bounds, positions);
365 void Font::precache(const SkPaint* paint, const char* text, int numGlyphs) { argument
368 if (numGlyphs == 0 || text == NULL) {
373 while (glyphsCount < numGlyphs) {
299 render(const SkPaint* paint, const char *text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, const float* positions) argument
305 render(const SkPaint* paint, const char *text, uint32_t start, uint32_t len, int numGlyphs, const SkPath* path, float hOffset, float vOffset) argument
355 measure(const SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, Rect *bounds, const float* positions) argument
386 render(const SkPaint* paint, const char* text, uint32_t start, uint32_t len, int numGlyphs, int x, int y, RenderMode mode, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* positions) argument
[all...]
/frameworks/rs/
H A DrsFont.cpp162 uint32_t start, int32_t numGlyphs,
165 if (!mInitialized || numGlyphs == 0 || text == NULL || len == 0) {
180 if (numGlyphs > 0) {
181 glyphsLeft = numGlyphs;
219 if (numGlyphs > 0) {
750 uint32_t startIndex, int32_t numGlyphs,
778 currentFont->renderUTF(text, len, x, y, startIndex, numGlyphs,
161 renderUTF(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t start, int32_t numGlyphs, RenderMode mode, Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
749 renderText(const char *text, uint32_t len, int32_t x, int32_t y, uint32_t startIndex, int32_t numGlyphs, Font::RenderMode mode, Font::Rect *bounds, uint8_t *bitmap, uint32_t bitmapW, uint32_t bitmapH) argument
/frameworks/minikin/libs/minikin/
H A DLayout.cpp726 unsigned int numGlyphs; local
727 hb_glyph_info_t* info = hb_buffer_get_glyph_infos(buffer, &numGlyphs);
729 if (numGlyphs)
734 for (unsigned int i = 0; i < numGlyphs; i++) {
762 if (numGlyphs)
764 mAdvances[info[numGlyphs - 1].cluster - start] += letterSpaceHalfRight;

Completed in 795 milliseconds