Searched refs:spanBack (Results 1 - 4 of 4) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DUnicodeSetStringSpan.java87 /** The lengths of span(), spanBack() etc. for each string. */
189 - spanSet.spanBack(string, length16, SpanCondition.CONTAINED);
644 public synchronized int spanBack(CharSequence s, int length, SpanCondition spanCondition) { method in class:UnicodeSetStringSpan
648 int pos = spanSet.spanBack(s, length, SpanCondition.CONTAINED);
773 pos = spanSet.spanBack(s, oldPos, SpanCondition.CONTAINED);
897 pos = spanNotSet.spanBack(s, pos, SpanCondition.NOT_CONTAINED);
1001 * for both increments (in span()) and decrements (in spanBack()).
H A DUnicodeSet.java47 * contains(c), containsNone(...), span(...), spanBack(...) etc.
1251 * If the fromIndex is less than 0, spanBack will return 0.
1252 * If fromIndex is greater than the string length, spanBack will start from the string length.
1260 public int spanBack(CharSequence s, int fromIndex, SpanCondition spanCondition) { method in class:UnicodeSet
1268 // Frozen set without strings, or no string is relevant for spanBack().
1269 return bmpSet.spanBack(s, fromIndex, spanCondition);
1272 return stringSpan.spanBack(s, fromIndex, spanCondition);
1279 return strSpan.spanBack(s, fromIndex, spanCondition);
1325 * <li>span() and spanBack() partition any string the
1343 * <li>With either "contained" condition, span() and spanBack() ma
[all...]
H A DFilteredNormalizer2.java235 int suffixStart=set.spanBack(first, 0x7fffffff, UnicodeSet.SpanCondition.SIMPLE);
H A DBMPSet.java250 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) { method in class:BMPSet

Completed in 99 milliseconds