Lines Matching refs:contextEnd

1607      * @param contextEnd the index past the last character to use for shaping context,
1619 public int getTextGlyphs(String text, int start, int end, int contextStart, int contextEnd,
1627 if ((start | end | contextStart | contextEnd | (end - start)
1628 | (start - contextStart) | (contextEnd - end) | (text.length() - end)
1629 | (text.length() - contextEnd)) < 0) {
1635 return native_getTextGlyphs(mNativePaint, text, start, end, contextStart, contextEnd,
1709 int contextStart, int contextEnd, int flags, float[] advances,
1711 return getTextRunAdvances(text, start, end, contextStart, contextEnd, flags,
1723 int contextStart, int contextEnd, int flags, float[] advances,
1729 if ((start | end | contextStart | contextEnd | advancesIndex | (end - start)
1730 | (start - contextStart) | (contextEnd - end)
1731 | (text.length() - contextEnd)
1739 contextStart, contextEnd, flags, advances, advancesIndex, reserved);
1744 contextStart, contextEnd, flags, advances, advancesIndex, reserved);
1748 contextStart, contextEnd, flags, advances, advancesIndex, this);
1754 int contextLen = contextEnd - contextStart;
1757 TextUtils.getChars(text, contextStart, contextEnd, buf, 0);
1794 * @param contextEnd the index past the last character to use for shaping context,
1807 int contextEnd, int flags, float[] advances, int advancesIndex) {
1808 return getTextRunAdvances(text, start, end, contextStart, contextEnd, flags,
1842 * @param contextEnd the index past the last character to use for shaping context,
1856 int contextEnd, int flags, float[] advances, int advancesIndex, int reserved) {
1864 if ((start | end | contextStart | contextEnd | advancesIndex | (end - start)
1865 | (start - contextStart) | (contextEnd - end)
1866 | (text.length() - contextEnd)
1878 contextStart, contextEnd, flags, advances, advancesIndex, reserved);
1884 contextStart, contextEnd, flags, advances, advancesIndex, reserved);
1923 int contextEnd = contextStart + contextLength;
1924 if (((contextStart | contextEnd | offset | (contextEnd - contextStart)
1925 | (offset - contextStart) | (contextEnd - offset)
1926 | (text.length - contextEnd) | cursorOpt) < 0)
1941 * <p>ContextStart, contextEnd, and offset are relative to the start of
1948 * value before contextStart or after contextEnd.
1952 * @param contextEnd the end of the context
1962 int contextEnd, int flags, int offset, int cursorOpt) {
1966 return getTextRunCursor(text.toString(), contextStart, contextEnd,
1971 contextStart, contextEnd, flags, offset, cursorOpt, this);
1974 int contextLen = contextEnd - contextStart;
1976 TextUtils.getChars(text, contextStart, contextEnd, buf, 0);
1988 * <p>ContextStart, contextEnd, and offset are relative to the start of
1995 * value before contextStart or after contextEnd.
1999 * @param contextEnd the end of the context
2008 public int getTextRunCursor(String text, int contextStart, int contextEnd,
2010 if (((contextStart | contextEnd | offset | (contextEnd - contextStart)
2011 | (offset - contextStart) | (contextEnd - offset)
2012 | (text.length() - contextEnd) | cursorOpt) < 0)
2018 contextStart, contextEnd, flags, offset, cursorOpt);
2153 String text, int start, int end, int contextStart, int contextEnd,
2160 String text, int start, int end, int contextStart, int contextEnd,
2166 int contextStart, int contextEnd, int flags, int offset, int cursorOpt);