Home | History | Annotate | Download | only in intltest

Lines Matching refs:isUTF16

2842 static inline int32_t slen(const void *s, UBool isUTF16) {
2843 return isUTF16 ? u_strlen((const UChar *)s) : strlen((const char *)s);
2855 const void *s, int32_t length, UBool isUTF16,
2884 typeName= isUTF16 ? typeNames16[type] : typeNames8[type];
2940 length=slen(s, isUTF16);
2943 start+= isUTF16 ? containsSpanUTF16(set, (const UChar *)s+start, length-start, spanCondition) :
2959 start+= isUTF16 ? realSet.span((const UChar *)s+start, length>=0 ? length-start : length, spanCondition) :
2966 isUTF16 ? ((const UChar *)s)[start]==0 :
2977 length=slen(s, isUTF16);
2984 length= isUTF16 ? containsSpanBackUTF16(set, (const UChar *)s, length, spanCondition) :
3000 limits[limitsCapacity-count]= length >=0 ? length : slen(s, isUTF16);
3005 length= isUTF16 ? realSet.spanBack((const UChar *)s, length, spanCondition) :
3051 const void *s, int32_t length, UBool isUTF16,
3076 s, length, isUTF16,
3112 if(isUTF16 && (whichSpans&SPAN_SET)!=0) {
3152 const void *s, int32_t length, UBool isUTF16,
3157 testSpan(sets, s, length, isUTF16, whichSpans, expectLimits, expectCount, testName, index);