Home
last modified time | relevance | path

Searched refs:contextLen (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/text/
DSpannableStringBuilder.java1136 int contextLen = contextEnd - contextStart; in drawTextRun() local
1139 c.drawTextRun(mText, start, len, contextStart, contextLen, x, y, flags, p); in drawTextRun()
1142 contextLen, x, y, flags, p); in drawTextRun()
1144 char[] buf = TextUtils.obtain(contextLen); in drawTextRun()
1146 c.drawTextRun(buf, start - contextStart, len, 0, contextLen, x, y, flags, p); in drawTextRun()
1208 int contextLen = contextEnd - contextStart; in getTextRunAdvances() local
1212 ret = p.getTextRunAdvances(mText, start, len, contextStart, contextLen, in getTextRunAdvances()
1216 contextStart + mGapLength, contextLen, flags, advances, advancesPos); in getTextRunAdvances()
1218 char[] buf = TextUtils.obtain(contextLen); in getTextRunAdvances()
1221 0, contextLen, flags, advances, advancesPos); in getTextRunAdvances()
[all …]
DTextLine.java739 int contextLen = contextEnd - contextStart; in handleText() local
744 contextStart, contextLen, flags, null, 0); in handleText()
/frameworks/base/graphics/java/android/graphics/
DPaint.java1797 int contextLen = contextEnd - contextStart; in getTextRunAdvances() local
1799 char[] buf = TemporaryBuffer.obtain(contextLen); in getTextRunAdvances()
1802 0, contextLen, flags, advances, advancesIndex); in getTextRunAdvances()
1968 int contextLen = contextEnd - contextStart; in getTextRunCursor() local
1969 char[] buf = TemporaryBuffer.obtain(contextLen); in getTextRunCursor()
1971 int result = getTextRunCursor(buf, 0, contextLen, flags, offset - contextStart, cursorOpt); in getTextRunCursor()
DCanvas.java1511 int contextLen = contextEnd - contextStart; in drawTextRun() local
1513 char[] buf = TemporaryBuffer.obtain(contextLen); in drawTextRun()
1516 0, contextLen, x, y, flags, paint.mNativePaint); in drawTextRun()
/frameworks/base/core/java/android/view/
DGLES20Canvas.java1301 int contextLen = contextEnd - contextStart; in drawTextRun() local
1303 char[] buf = TemporaryBuffer.obtain(contextLen); in drawTextRun()
1305 nDrawTextRun(mRenderer, buf, start - contextStart, len, 0, contextLen, in drawTextRun()