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

  /frameworks/base/core/java/android/text/
MeasuredText.java 167 float totalAdvance = 0;
172 totalAdvance +=
181 return totalAdvance;
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.cpp 352 ALOGD("Advances - start = %d, count = %d, contextCount = %d, totalAdvance = %f", start, count,
703 jfloat totalAdvance = *outTotalAdvance;
741 ALOGD(" -- initial totalAdvance = %f", totalAdvance);
755 float xpos = totalAdvance + xo + yo * skewX;
759 totalAdvance += xAdvance;
769 *outTotalAdvance = totalAdvance;
772 ALOGD(" -- final totalAdvance = %f", totalAdvance);
    [all...]
Paint.cpp 487 bidiFlags, widthsArray, NULL /* dont need totalAdvance */);
570 jfloat totalAdvance = 0;
573 advancesArray, &totalAdvance);
579 return totalAdvance;
608 scalarArray, NULL /* dont need totalAdvance */);
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 589 static float xOffsetForTextAlign(SkPaint* paint, float totalAdvance) {
592 return -totalAdvance / 2.0f;
595 return -totalAdvance;
612 jfloat totalAdvance = value->getTotalAdvance();
613 x += xOffsetForTextAlign(paint, totalAdvance);
621 x, y, positions, paint, totalAdvance, bounds);
648 jfloat totalAdvance = value->getTotalAdvance();
649 x += xOffsetForTextAlign(paint, totalAdvance);
657 x, y, positions, paint, totalAdvance, bounds);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 725 float totalAdvance = 0;
762 totalAdvance += advance;
764 currentRun->setWidth(totalAdvance > 0.0 ? totalAdvance : 0.0);
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.cpp 424 float totalAdvance, const Rect& bounds, DrawOpMode drawOpMode) {
433 x, y, positions, paint, totalAdvance, bounds);
OpenGLRenderer.h 318 const float* positions, SkPaint* paint, float totalAdvance, const Rect& bounds,
    [all...]
DisplayListRenderer.h 124 const float* positions, SkPaint* paint, float totalAdvance, const Rect& bounds,
DisplayListOp.h     [all...]
OpenGLRenderer.cpp     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Paint_Delegate.java 935 float totalAdvance = 0;
942 totalAdvance += adv;
960 return (int) totalAdvance;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java     [all...]

Completed in 272 milliseconds