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

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BidiRenderer.java 161 float totalAdvance = 0;
176 totalAdvance += adv;
181 return x + totalAdvance;
Paint_Delegate.java 933 float totalAdvance = 0;
940 totalAdvance += adv;
958 return (int) totalAdvance;
    [all...]
  /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 351 ALOGD("Advances - start = %d, count = %d, contextCount = %d, totalAdvance = %f", start, count,
702 jfloat totalAdvance = *outTotalAdvance;
740 ALOGD(" -- initial totalAdvance = %f", totalAdvance);
754 float xpos = totalAdvance + xo + yo * skewX;
758 totalAdvance += xAdvance;
768 *outTotalAdvance = totalAdvance;
771 ALOGD(" -- final totalAdvance = %f", totalAdvance);
    [all...]
Paint.cpp 486 bidiFlags, widthsArray, NULL /* dont need totalAdvance */);
569 jfloat totalAdvance = 0;
572 advancesArray, &totalAdvance);
577 return totalAdvance;
606 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...]
  /frameworks/base/graphics/java/android/graphics/
Paint.java     [all...]

Completed in 274 milliseconds