Home
last modified time | relevance | path

Searched refs:getTextRunAdvances (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/graphics/
DPaintTest.java192 final float advance = p.getTextRunAdvances(chars, start, count, in assertGetTextRunAdvances()
195 final float firstPartAdvance = p.getTextRunAdvances(chars, start, c, in assertGetTextRunAdvances()
197 final float secondPartAdvance = p.getTextRunAdvances(chars, start + c, count - c, in assertGetTextRunAdvances()
226 p.getTextRunAdvances((char[])null, 0, 0, 0, 0, false, null, 0); in testGetTextRunAdvances_invalid()
232 p.getTextRunAdvances(text, 0, text.length, 0, text.length, false, in testGetTextRunAdvances_invalid()
239 p.getTextRunAdvances(text, 0, text.length, 0, text.length, false, in testGetTextRunAdvances_invalid()
247 p.getTextRunAdvances(text, 0, text.length, -1, text.length, false, null, 0); in testGetTextRunAdvances_invalid()
254 p.getTextRunAdvances(text, 0, text.length, 1, text.length, false, null, 0); in testGetTextRunAdvances_invalid()
261 p.getTextRunAdvances(text, 0, text.length, 0, text.length - 1, false, null, 0); in testGetTextRunAdvances_invalid()
268 p.getTextRunAdvances(text, 0, text.length, 0, text.length + 1, false, null, 0); in testGetTextRunAdvances_invalid()
/frameworks/base/core/java/android/text/
DGraphicsOperations.java55 float getTextRunAdvances(int start, int end, int contextStart, int contextEnd, in getTextRunAdvances() method
DMeasuredParagraph.java528 mWholeWidth += mCachedPaint.getTextRunAdvances( in applyStyleRun()
544 mWholeWidth += mCachedPaint.getTextRunAdvances( in applyStyleRun()
DSpannableStringBuilder.java1513 …public float getTextRunAdvances(int start, int end, int contextStart, int contextEnd, boolean isRt… in getTextRunAdvances() method in SpannableStringBuilder
1522 ret = p.getTextRunAdvances(mText, start, len, contextStart, contextLen, in getTextRunAdvances()
1525 ret = p.getTextRunAdvances(mText, start + mGapLength, len, in getTextRunAdvances()
1530 ret = p.getTextRunAdvances(buf, start - contextStart, len, in getTextRunAdvances()
/frameworks/base/graphics/java/android/graphics/
DPaint.java2578 public float getTextRunAdvances(@NonNull char[] chars, @IntRange(from = 0) int index, in getTextRunAdvances() method in Paint
/frameworks/base/core/java/android/widget/
DTextView.java13182 public float getTextRunAdvances(int start, int end, int contextStart, in getTextRunAdvances() method in TextView.Drawables.CharWrapper
13187 return p.getTextRunAdvances(mChars, start + mStart, count, in getTextRunAdvances()