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 DTextLine.java209 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
304 int runLimit = runStart + (runs[i+1] & Layout.RUN_LENGTH_MASK);
465 runLimit = runStart + (runs[runIndex+1] & Layout.RUN_LENGTH_MASK);
482 (runs[prevRunIndex+1] & Layout.RUN_LENGTH_MASK);
539 (runs[otherRunIndex+1] & Layout.RUN_LENGTH_MASK);
H A DLayout.java728 int start = lineStart + (runs[i] & RUN_LENGTH_MASK);
749 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
775 int limit = start + (runs[i+1] & RUN_LENGTH_MASK);
1067 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
1389 int there = here + (dirs.mDirections[i+1] & RUN_LENGTH_MASK);
1919 /* package */ static final int RUN_LENGTH_MASK = 0x03ffffff; field in class:Layout
1937 new Directions(new int[] { 0, RUN_LENGTH_MASK });
1939 new Directions(new int[] { 0, RUN_LENGTH_MASK | RUN_RTL_FLAG });

Completed in 10 milliseconds