Home | History | Annotate | Download | only in intltest

Lines Matching full:isutf16

2862 static inline int32_t slen(const void *s, UBool isUTF16) {
2863 return isUTF16 ? u_strlen((const UChar *)s) : strlen((const char *)s);
2875 const void *s, int32_t length, UBool isUTF16,
2904 typeName= isUTF16 ? typeNames16[type] : typeNames8[type];
2960 length=slen(s, isUTF16);
2963 start+= isUTF16 ? containsSpanUTF16(set, (const UChar *)s+start, length-start, spanCondition) :
2979 start+= isUTF16 ? realSet.span((const UChar *)s+start, length>=0 ? length-start : length, spanCondition) :
2986 isUTF16 ? ((const UChar *)s)[start]==0 :
2997 length=slen(s, isUTF16);
3004 length= isUTF16 ? containsSpanBackUTF16(set, (const UChar *)s, length, spanCondition) :
3020 limits[limitsCapacity-count]= length >=0 ? length : slen(s, isUTF16);
3025 length= isUTF16 ? realSet.spanBack((const UChar *)s, length, spanCondition) :
3071 const void *s, int32_t length, UBool isUTF16,
3096 s, length, isUTF16,
3132 if(isUTF16 && (whichSpans&SPAN_SET)!=0) {
3172 const void *s, int32_t length, UBool isUTF16,
3177 testSpan(sets, s, length, isUTF16, whichSpans, expectLimits, expectCount, testName, index);