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

  /frameworks/base/libs/hwui/font/
Font.cpp 299 int glyphsCount = 0;
320 while (glyphsCount < numGlyphs && penX < pathLength) {
337 glyphsCount++;
358 int glyphsCount = 0;
359 while (glyphsCount < numGlyphs) {
368 glyphsCount++;
390 int glyphsCount = 0;
394 while (glyphsCount < numGlyphs) {
407 float penX = x + positions[(glyphsCount << 1)];
408 float penY = y + positions[(glyphsCount << 1) + 1]
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 531 size_t glyphsCount = value->getGlyphsCount();
532 memcpy(glyphsArray, shapedGlyphs, sizeof(jchar) * glyphsCount);
535 return glyphsCount;
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 611 size_t glyphsCount = value->getGlyphsCount();
615 int bytesCount = glyphsCount * sizeof(jchar);
620 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount,
632 size_t glyphsCount = value->getGlyphsCount();
633 int bytesCount = glyphsCount * sizeof(jchar);
634 renderer->drawTextOnPath((const char*) glyphs, bytesCount, glyphsCount, path,
647 size_t glyphsCount = value->getGlyphsCount();
651 int bytesCount = glyphsCount * sizeof(jchar);
656 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount,
724 size_t glyphsCount = value->getGlyphsCount()
    [all...]

Completed in 291 milliseconds