Home
last modified time | relevance | path

Searched refs:totalAdvance (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/core/java/android/text/
DMeasuredText.java191 float totalAdvance = 0; in addStyleRun() local
197 totalAdvance += in addStyleRun()
203 totalAdvance += mBuilder.addStyleRun(paint, q, i, isRtl); in addStyleRun()
212 return totalAdvance; in addStyleRun()
/frameworks/base/libs/hwui/
DDisplayListCanvas.cpp463 float totalAdvance) { in drawText() argument
483 x, y, positions, outlinePaint, totalAdvance, bounds)); // bounds? in drawText()
490 x, y, positions, innerPaint, totalAdvance, bounds)); in drawText()
494 x, y, positions, refPaint(&paint), totalAdvance, bounds); in drawText()
DCanvas.h153 float totalAdvance) = 0;
DOpenGLRenderer.h219 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
749 void drawTextDecorations(float totalAdvance, float x, float y, const SkPaint* paint);
DSkiaCanvas.cpp123 float totalAdvance) override;
672 float totalAdvance) { in drawText() argument
DDisplayListCanvas.h233 float boundsRight, float boundsBottom, float totalAdvance) override;
DDisplayListOp.h1323 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds) in DrawTextOp() argument
1325 mX(x), mY(y), mPositions(positions), mTotalAdvance(totalAdvance) { in DrawTextOp()
DOpenGLRenderer.cpp2207 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
2288 drawTextDecorations(totalAdvance, oldX, oldY, paint);
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp430 float totalAdvance) in DrawTextFunctor() argument
432 x(x), y(y), bounds(bounds), totalAdvance(totalAdvance) { } in DrawTextFunctor()
452 totalAdvance); in operator ()()
463 float totalAdvance; member in android::CanvasJNI::DrawTextFunctor
/frameworks/base/graphics/java/android/graphics/
DPaint.java2029 … float totalAdvance = native_getTextRunAdvances(mNativePaint, mNativeTypeface, text, start, end, in getTextRunAdvances() local
2038 return totalAdvance * mInvCompatScaling; // assume errors are insignificant in getTextRunAdvances()
/frameworks/base/core/jni/android/graphics/
DPaint.cpp721 jfloat totalAdvance = 0; in doTextRunAdvances() local
728 totalAdvance = layout.getAdvance(); in doTextRunAdvances()
734 return totalAdvance; in doTextRunAdvances()