/frameworks/base/core/java/android/text/ |
D | MeasuredText.java | 166 float totalAdvance = 0; in addStyleRun() local 171 totalAdvance += in addStyleRun() 180 return totalAdvance; in addStyleRun()
|
/frameworks/base/libs/hwui/ |
D | DisplayListRenderer.cpp | 397 float totalAdvance, const Rect& bounds, DrawOpMode drawOpMode) { in drawText() argument 415 x, y, positions, outlinePaint, totalAdvance, bounds)); // bounds? in drawText() 422 x, y, positions, innerPaint, totalAdvance, bounds)); in drawText() 428 x, y, positions, paint, totalAdvance, bounds); in drawText()
|
D | Renderer.h | 213 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
|
D | OpenGLRenderer.h | 194 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, 755 void drawTextDecorations(float totalAdvance, float x, float y, const SkPaint* paint);
|
D | DisplayListRenderer.h | 145 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
|
D | DisplayListOp.h | 1372 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds) in DrawTextOp() argument 1374 mX(x), mY(y), mPositions(positions), mTotalAdvance(totalAdvance) { in DrawTextOp()
|
D | OpenGLRenderer.cpp | 2751 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds, 2832 drawTextDecorations(totalAdvance, oldX, oldY, paint);
|
/frameworks/base/core/jni/ |
D | android_view_GLES20Canvas.cpp | 597 Paint* paint, uint16_t* glyphs, float* pos, float totalAdvance, in RenderTextFunctor() argument 600 pos(pos), totalAdvance(totalAdvance), bounds(bounds) { } in RenderTextFunctor() 610 x, y, pos + 2 * start, paint, totalAdvance, bounds); in operator ()() 620 float totalAdvance; member in android::RenderTextFunctor 633 float totalAdvance = layout->getAdvance(); in renderTextLayout() local 635 RenderTextFunctor f(*layout, renderer, x, y, paint, glyphs, pos, totalAdvance, bounds); in renderTextLayout()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Paint.java | 1995 … float totalAdvance = native_getTextRunAdvances(mNativePaint, mNativeTypeface, text, start, end, in getTextRunAdvances() local 2004 return totalAdvance * mInvCompatScaling; // assume errors are insignificant in getTextRunAdvances()
|
/frameworks/base/core/jni/android/graphics/ |
D | Paint.cpp | 660 jfloat totalAdvance = 0; in doTextRunAdvances() local 667 totalAdvance = layout.getAdvance(); in doTextRunAdvances() 673 return totalAdvance; in doTextRunAdvances()
|