Searched refs:runIsRtl (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | TextLine.java | 236 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in draw() 253 h += drawRun(c, segstart, j, runIsRtl, x+h, top, y, bottom, in draw() 313 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in measure() 332 boolean advance = (mDir == Layout.DIR_RIGHT_TO_LEFT) == runIsRtl; in measure() 334 return h += measureRun(segstart, offset, j, runIsRtl, fmi); in measure() 337 float w = measureRun(segstart, j, j, runIsRtl, fmi); in measure() 341 return h += measureRun(segstart, offset, j, runIsRtl, null); in measure() 379 int limit, boolean runIsRtl, float x, int top, int y, int bottom, 382 if ((mDir == Layout.DIR_LEFT_TO_RIGHT) == runIsRtl) { 383 float w = -measureRun(start, limit, limit, runIsRtl, null); [all …]
|