Searched refs:RUN_LENGTH_MASK (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutDirectionsTest.java35 private static final int RUN_LENGTH_MASK = 0x03ffffff; field in class:StaticLayoutDirectionsTest
41 new Directions(new int[] { 0, RUN_LENGTH_MASK });
43 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
/frameworks/base/core/java/android/text/
H A DLayout.java792 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
818 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
836 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
862 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1183 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
1510 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
2056 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff; field in class:Layout
2074 new Directions(new int[] { 0, RUN_LENGTH_MASK });
2076 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
H A DTextLine.java211 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
288 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
438 runLimit = runStart + (runs[runIndex+1] & Layout.RUN_LENGTH_MASK);
455 (runs[prevRunIndex+1] & Layout.RUN_LENGTH_MASK);
512 (runs[otherRunIndex+1] & Layout.RUN_LENGTH_MASK);

Completed in 1912 milliseconds