Lines Matching refs:contained
451 // Try retaining an set of elements contained in another set (intersection)
1535 // For single-codepoint contains, invalid codepoints are NOT contained
2100 UBool contained = set.contains(s);
2101 if (contained == in) {
2103 (contained ? " contains {" : " does not contain {") +
2107 (contained ? " contains {" : " does not contain {") +
2465 next=start; // Do not span this single, not-contained code point.
2565 length=prev; // Do not span this single, not-contained code point.
2663 next=start; // Do not span this single, not-contained code point.
2765 length=prev; // Do not span this single, not-contained code point.
2840 static inline USetSpanCondition invertSpanCondition(USetSpanCondition spanCondition, USetSpanCondition contained) {
2841 return spanCondition == USET_SPAN_NOT_CONTAINED ? contained : USET_SPAN_NOT_CONTAINED;
2864 USetSpanCondition spanCondition, firstSpanCondition, contained;
2907 contained=USET_SPAN_CONTAINED;
2913 contained=USET_SPAN_SIMPLE;
2919 spanCondition=invertSpanCondition(spanCondition, contained);
2933 spanCondition=invertSpanCondition(spanCondition, contained);
2954 spanCondition=invertSpanCondition(spanCondition, contained);
2973 spanCondition=invertSpanCondition(spanCondition, contained);
2991 spanCondition=invertSpanCondition(spanCondition, contained);
3012 spanCondition=invertSpanCondition(spanCondition, contained);
3478 // span(contained) of "abcd" spans the entire string
3514 "xx" // set.complement().span(contained) will stop between the two 'x'es.
3578 // The not-contained character at the end prevents an early exit from the span().