Searched refs:runIsRtl (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | TextLine.java | 216 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in draw() 237 h += drawRun(c, segstart, j, runIsRtl, x+h, top, y, bottom, in draw() 311 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in measure() 334 boolean advance = (mDir == Layout.DIR_RIGHT_TO_LEFT) == runIsRtl; in measure() 336 return h += measureRun(segstart, offset, j, runIsRtl, fmi); in measure() 339 float w = measureRun(segstart, j, j, runIsRtl, fmi); in measure() 343 return h += measureRun(segstart, offset, j, runIsRtl, null); in measure() 388 int limit, boolean runIsRtl, float x, int top, int y, int bottom, 391 if ((mDir == Layout.DIR_LEFT_TO_RIGHT) == runIsRtl) { 392 float w = -measureRun(start, limit, limit, runIsRtl, null); [all …]
|