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

/frameworks/base/core/tests/coretests/src/android/text/
H A DStaticLayoutDirectionsTest.java41 private static final int RUN_LENGTH_MASK = 0x03ffffff; field in class:StaticLayoutDirectionsTest
47 new Directions(new int[] { 0, RUN_LENGTH_MASK });
49 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
/frameworks/base/core/java/android/text/
H A DLayout.java943 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
969 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
987 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1013 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1345 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
1670 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
2226 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff; field in class:Layout
2246 new Directions(new int[] { 0, RUN_LENGTH_MASK });
2251 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });
H A DTextLine.java241 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
318 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
468 runLimit = runStart + (runs[runIndex+1] & Layout.RUN_LENGTH_MASK);
485 (runs[prevRunIndex+1] & Layout.RUN_LENGTH_MASK);
542 (runs[otherRunIndex+1] & Layout.RUN_LENGTH_MASK);

Completed in 153 milliseconds