Lines Matching refs:contextEnd

1888             int contextStart, int contextEnd, boolean isRtl, float[] advances,
1894 if ((start | end | contextStart | contextEnd | advancesIndex | (end - start)
1895 | (start - contextStart) | (contextEnd - end)
1896 | (text.length() - contextEnd)
1904 contextStart, contextEnd, isRtl, advances, advancesIndex);
1909 contextStart, contextEnd, isRtl, advances, advancesIndex);
1913 contextStart, contextEnd, isRtl, advances, advancesIndex, this);
1919 int contextLen = contextEnd - contextStart;
1922 TextUtils.getChars(text, contextStart, contextEnd, buf, 0);
1959 * @param contextEnd the index past the last character to use for shaping context,
1971 int contextEnd, boolean isRtl, float[] advances, int advancesIndex) {
1976 if ((start | end | contextStart | contextEnd | advancesIndex | (end - start)
1977 | (start - contextStart) | (contextEnd - end)
1978 | (text.length() - contextEnd)
1990 contextStart, contextEnd, isRtl, advances, advancesIndex);
1996 contextStart, contextEnd, isRtl, advances, advancesIndex);
2035 int contextEnd = contextStart + contextLength;
2036 if (((contextStart | contextEnd | offset | (contextEnd - contextStart)
2037 | (offset - contextStart) | (contextEnd - offset)
2038 | (text.length - contextEnd) | cursorOpt) < 0)
2053 * <p>ContextStart, contextEnd, and offset are relative to the start of
2060 * value before contextStart or after contextEnd.
2064 * @param contextEnd the end of the context
2074 int contextEnd, int dir, int offset, int cursorOpt) {
2078 return getTextRunCursor(text.toString(), contextStart, contextEnd,
2083 contextStart, contextEnd, dir, offset, cursorOpt, this);
2086 int contextLen = contextEnd - contextStart;
2088 TextUtils.getChars(text, contextStart, contextEnd, buf, 0);
2100 * <p>ContextStart, contextEnd, and offset are relative to the start of
2107 * value before contextStart or after contextEnd.
2111 * @param contextEnd the end of the context
2120 public int getTextRunCursor(String text, int contextStart, int contextEnd,
2122 if (((contextStart | contextEnd | offset | (contextEnd - contextStart)
2123 | (offset - contextStart) | (contextEnd - offset)
2124 | (text.length() - contextEnd) | cursorOpt) < 0)
2130 contextStart, contextEnd, dir, offset, cursorOpt);
2267 String text, int start, int end, int contextStart, int contextEnd,
2274 String text, int start, int end, int contextStart, int contextEnd,
2280 int contextStart, int contextEnd, int dir, int offset, int cursorOpt);