Home | History | Annotate | Download | only in intltest

Lines Matching refs:contained

451     // Try retaining an set of elements contained in another set (intersection)
1536 // For single-codepoint contains, invalid codepoints are NOT contained
2101 UBool contained = set.contains(s);
2102 if (contained == in) {
2104 (contained ? " contains {" : " does not contain {") +
2108 (contained ? " contains {" : " does not contain {") +
2463 next=start; // Do not span this single, not-contained code point.
2563 length=prev; // Do not span this single, not-contained code point.
2661 next=start; // Do not span this single, not-contained code point.
2763 length=prev; // Do not span this single, not-contained code point.
2838 static inline USetSpanCondition invertSpanCondition(USetSpanCondition spanCondition, USetSpanCondition contained) {
2839 return spanCondition == USET_SPAN_NOT_CONTAINED ? contained : USET_SPAN_NOT_CONTAINED;
2862 USetSpanCondition spanCondition, firstSpanCondition, contained;
2905 contained=USET_SPAN_CONTAINED;
2911 contained=USET_SPAN_SIMPLE;
2917 spanCondition=invertSpanCondition(spanCondition, contained);
2931 spanCondition=invertSpanCondition(spanCondition, contained);
2952 spanCondition=invertSpanCondition(spanCondition, contained);
2971 spanCondition=invertSpanCondition(spanCondition, contained);
2989 spanCondition=invertSpanCondition(spanCondition, contained);
3010 spanCondition=invertSpanCondition(spanCondition, contained);
3476 // span(contained) of "abcd" spans the entire string
3512 "xx" // set.complement().span(contained) will stop between the two 'x'es.
3576 // The not-contained character at the end prevents an early exit from the span().