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 211 int glyphsCount = 0;
232 while (glyphsCount < numGlyphs && penX < pathLength) {
249 glyphsCount++;
268 int glyphsCount = 0;
270 while (glyphsCount < numGlyphs) {
280 glyphsCount++;
299 int glyphsCount = 0;
307 while (glyphsCount < numGlyphs) {
327 glyphsCount++;
333 while (glyphsCount < numGlyphs)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Paint.cpp 520 size_t glyphsCount = value->getGlyphsCount();
521 memcpy(glyphsArray, shapedGlyphs, sizeof(jchar) * glyphsCount);
524 return glyphsCount;
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 533 size_t glyphsCount = value->getGlyphsCount();
536 int bytesCount = glyphsCount * sizeof(jchar);
537 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y,
549 size_t glyphsCount = value->getGlyphsCount();
550 int bytesCount = glyphsCount * sizeof(jchar);
551 renderer->drawTextOnPath((const char*) glyphs, bytesCount, glyphsCount, path,
564 size_t glyphsCount = value->getGlyphsCount();
567 int bytesCount = glyphsCount * sizeof(jchar);
568 renderer->drawText((const char*) glyphs, bytesCount, glyphsCount, x, y,
636 size_t glyphsCount = value->getGlyphsCount()
    [all...]

Completed in 53 milliseconds