Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DMeasuredText.java166 float totalAdvance = 0; in addStyleRun() local
171 totalAdvance += in addStyleRun()
180 return totalAdvance; in addStyleRun()
/frameworks/base/libs/hwui/
DDisplayListRenderer.cpp397 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()
DRenderer.h213 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
DOpenGLRenderer.h194 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
755 void drawTextDecorations(float totalAdvance, float x, float y, const SkPaint* paint);
DDisplayListRenderer.h145 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
DDisplayListOp.h1372 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()
DOpenGLRenderer.cpp2751 const float* positions, const SkPaint* paint, float totalAdvance, const Rect& bounds,
2832 drawTextDecorations(totalAdvance, oldX, oldY, paint);
/frameworks/base/core/jni/
Dandroid_view_GLES20Canvas.cpp597 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/
DPaint.java1995 … 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/
DPaint.cpp660 jfloat totalAdvance = 0; in doTextRunAdvances() local
667 totalAdvance = layout.getAdvance(); in doTextRunAdvances()
673 return totalAdvance; in doTextRunAdvances()