Searched defs:RUN_LENGTH_MASK (Results 1 - 2 of 2) 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 });

Completed in 82 milliseconds