HomeSort by relevance Sort by last modified time
    Searched refs:spanBack (Results 1 - 25 of 29) sorted by null

1 2

  /external/icu/icu4c/source/common/
bmpset.h 55 const UChar *spanBack(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const;
unisetspan.h 77 int32_t spanBack(const UChar *s, int32_t length, USetSpanCondition spanCondition) const;
117 // the lengths of span(), spanBack() etc. for each string.
unisetspan.cpp 32 * for both increments (in span()) and decrements (in spanBack()).
320 spanLength=length16-spanSet.spanBack(s16, length16, USET_SPAN_CONTAINED);
792 int32_t UnicodeSetStringSpan::spanBack(const UChar *s, int32_t length, USetSpanCondition spanCondition) const {
796 int32_t pos=spanSet.spanBack(s, length, USET_SPAN_CONTAINED);
    [all...]
filterednormalizer2.cpp 125 int32_t suffixStart=set.spanBack(first, INT32_MAX, USET_SPAN_SIMPLE);
uniset.cpp     [all...]
bmpset.cpp 397 BMPSet::spanBack(const UChar *s, const UChar *limit, USetSpanCondition spanCondition) const {
uset.cpp 207 return ((UnicodeSet*) set)->UnicodeSet::spanBack(s, length, spanCondition);
  /external/icu/icu4c/source/common/unicode/
uniset.h     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
UnicodeSetStringSpan.java 67 /** The lengths of span(), spanBack() etc. for each string. */
169 - spanSet.spanBack(string, length16, SpanCondition.CONTAINED);
645 public synchronized int spanBack(CharSequence s, int length, SpanCondition spanCondition) {
649 int pos = spanSet.spanBack(s, length, SpanCondition.CONTAINED);
    [all...]
BMPSet.java 238 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UnicodeSetStringSpan.java 63 /** The lengths of span(), spanBack() etc. for each string. */
165 - spanSet.spanBack(string, length16, SpanCondition.CONTAINED);
641 public synchronized int spanBack(CharSequence s, int length, SpanCondition spanCondition) {
645 int pos = spanSet.spanBack(s, length, SpanCondition.CONTAINED);
    [all...]
BMPSet.java 236 public final int spanBack(CharSequence s, int limit, SpanCondition spanCondition) {
  /external/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 265 if(testcase.set.spanBack(utf16, 1, USET_SPAN_CONTAINED)==0) {
273 if(testcase.set.spanBack(utf16, 2, USET_SPAN_CONTAINED)==0) {
295 * The last spanBack() must be not-contained to match the first span().
299 length=set.spanBack(s, length, (USetSpanCondition)tf);
391 * The last spanBack() must be not-contained to match the first span().
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetSpanner.java 370 startTrailContained = unicodeSet.spanBack(sequence, spanCondition);
FilteredNormalizer2.java 257 int suffixStart=set.spanBack(first, 0x7fffffff, UnicodeSet.SpanCondition.SIMPLE);
UnicodeSet.java 49 * contains(c), containsNone(...), span(...), spanBack(...) etc.
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSetSpanner.java 415 startTrailContained = unicodeSet.spanBack(sequence, spanCondition);
FilteredNormalizer2.java 271 int suffixStart=set.spanBack(first, 0x7fffffff, UnicodeSet.SpanCondition.SIMPLE);
UnicodeSet.java 48 * contains(c), containsNone(...), span(...), spanBack(...) etc.
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 38 int pos = set.spanBack(string, 3, SpanCondition.SIMPLE);
40 errln(String.format("FAIL: UnicodeSet(%s).spanBack(%s) returns the wrong value pos %d (!= 1)",
128 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
129 || set.spanBack(s16, 12, SpanCondition.SIMPLE) != 6
130 || set.spanBack(s16, 5, SpanCondition.SIMPLE) != 0) {
131 errln("FAIL: UnicodeSet(" + pattern + ").spanBack(while longest match) returns the wrong value");
396 * of the original. When using spanBack() and comparing with span(), use a span condition for the first spanBack()
421 "spanBack",
422 "spanBack(LM)" }
    [all...]
UnicodeSetTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UnicodeSetStringSpanTest.java 34 int pos = set.spanBack(string, 3, SpanCondition.SIMPLE);
36 errln(String.format("FAIL: UnicodeSet(%s).spanBack(%s) returns the wrong value pos %d (!= 1)",
124 if ( set.spanBack(s16, 12, SpanCondition.CONTAINED) != 0
125 || set.spanBack(s16, 12, SpanCondition.SIMPLE) != 6
126 || set.spanBack(s16, 5, SpanCondition.SIMPLE) != 0) {
127 errln("FAIL: UnicodeSet(" + pattern + ").spanBack(while longest match) returns the wrong value");
392 * of the original. When using spanBack() and comparing with span(), use a span condition for the first spanBack()
417 "spanBack",
418 "spanBack(LM)" }
    [all...]
UnicodeSetTest.java     [all...]
  /external/icu/icu4c/source/test/intltest/
usettest.cpp 712 // span(UnicodeString) and spanBack(UnicodeString) convenience methods
729 if( ac.spanBack(longString, -5, USET_SPAN_CONTAINED)!=0 ||
730 ac.spanBack(longString, 0, USET_SPAN_CONTAINED)!=0 ||
731 ac.spanBack(longString, 5, USET_SPAN_CONTAINED)!=0 ||
732 ac.spanBack(longString, 10, USET_SPAN_CONTAINED)!=0 ||
733 ac.spanBack(longString, 15, USET_SPAN_CONTAINED)!=15 ||
734 ac.spanBack(longString, 20, USET_SPAN_CONTAINED)!=20 ||
735 ac.spanBack(longString, 25, USET_SPAN_CONTAINED)!=20 ||
736 ac.spanBack(longString, 30, USET_SPAN_CONTAINED)!=20 ||
737 ac.spanBack(longString, 35, USET_SPAN_CONTAINED)!=20 |
    [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 834 milliseconds

1 2