Lines Matching defs: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.
2672 next=start; // Do not span this single, not-contained code point.
2783 length=prev; // Do not span this single, not-contained code point.
2858 static inline USetSpanCondition invertSpanCondition(USetSpanCondition spanCondition, USetSpanCondition contained) {
2859 return spanCondition == USET_SPAN_NOT_CONTAINED ? contained : USET_SPAN_NOT_CONTAINED;
2882 USetSpanCondition spanCondition, firstSpanCondition, contained;
2925 contained=USET_SPAN_CONTAINED;
2931 contained=USET_SPAN_SIMPLE;
2937 spanCondition=invertSpanCondition(spanCondition, contained);
2951 spanCondition=invertSpanCondition(spanCondition, contained);
2972 spanCondition=invertSpanCondition(spanCondition, contained);
2991 spanCondition=invertSpanCondition(spanCondition, contained);
3009 spanCondition=invertSpanCondition(spanCondition, contained);
3030 spanCondition=invertSpanCondition(spanCondition, contained);
3496 // span(contained) of "abcd" spans the entire string
3532 "xx" // set.complement().span(contained) will stop between the two 'x'es.
3596 // The not-contained character at the end prevents an early exit from the span().