HomeSort by relevance Sort by last modified time
    Searched refs:glyphsCount (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 530 size_t glyphsCount = value->getGlyphsCount();
531 int bytesCount = glyphsCount * sizeof(jchar);
532 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y, paint);
543 size_t glyphsCount = value->getGlyphsCount();
544 int bytesCount = glyphsCount * sizeof(jchar);
545 renderer->drawTextOnPath((const char*) glyphs, bytesCount, glyphsCount, path,
558 size_t glyphsCount = value->getGlyphsCount();
559 int bytesCount = glyphsCount * sizeof(jchar);
560 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y, paint);
627 size_t glyphsCount = value->getGlyphsCount()
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 248 int glyphsCount = 0;
269 while (glyphsCount < numGlyphs && penX < pathLength) {
286 glyphsCount++;
315 int glyphsCount = 0;
323 while (glyphsCount < numGlyphs) {
343 glyphsCount++;
349 while (glyphsCount < numGlyphs) {
361 int penX = x + positions[(glyphsCount << 1)];
362 int penY = y + positions[(glyphsCount << 1) + 1];
380 glyphsCount++
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 478 size_t glyphsCount = value->getGlyphsCount();
479 memcpy(glyphsArray, shapedGlyphs, sizeof(jchar) * glyphsCount);
482 return glyphsCount;
    [all...]
  /external/skia/src/pdf/
SkPDFFont.cpp     [all...]

Completed in 81 milliseconds