Searched refs:runIsRtl (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | TextLine.java | 263 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in draw() 280 h += drawRun(c, segstart, j, runIsRtl, x+h, top, y, bottom, in draw() 341 boolean runIsRtl = (runs[i+1] & Layout.RUN_RTL_FLAG) != 0; in measure() 360 boolean advance = (mDir == Layout.DIR_RIGHT_TO_LEFT) == runIsRtl; in measure() 362 return h + measureRun(segstart, offset, j, runIsRtl, fmi); in measure() 365 float w = measureRun(segstart, j, j, runIsRtl, fmi); in measure() 369 return h + measureRun(segstart, offset, j, runIsRtl, null); in measure() 430 boolean runIsRtl = (runs[i + 1] & Layout.RUN_RTL_FLAG) != 0; 448 boolean advance = (mDir == Layout.DIR_RIGHT_TO_LEFT) == runIsRtl; 449 float w = measureRun(segstart, j, j, runIsRtl, fmi); [all …]
|