/frameworks/base/core/java/android/text/ |
D | MeasuredText.java | 191 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/ |
D | DisplayListCanvas.cpp | 463 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()
|
D | Canvas.h | 153 float totalAdvance) = 0;
|
D | OpenGLRenderer.h | 219 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, 749 void drawTextDecorations(float totalAdvance, float x, float y, const SkPaint* paint);
|
D | SkiaCanvas.cpp | 123 float totalAdvance) override; 672 float totalAdvance) { in drawText() argument
|
D | DisplayListCanvas.h | 233 float boundsRight, float boundsBottom, float totalAdvance) override;
|
D | DisplayListOp.h | 1323 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()
|
D | OpenGLRenderer.cpp | 2207 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, 2288 drawTextDecorations(totalAdvance, oldX, oldY, paint);
|
/frameworks/base/core/jni/ |
D | android_graphics_Canvas.cpp | 430 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/ |
D | Paint.java | 2029 … 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/ |
D | Paint.cpp | 721 jfloat totalAdvance = 0; in doTextRunAdvances() local 728 totalAdvance = layout.getAdvance(); in doTextRunAdvances() 734 return totalAdvance; in doTextRunAdvances()
|