Home | History | Annotate | Download | only in common

Lines Matching refs:strLen

88 uset_addString(USet* set, const UChar* str, int32_t strLen) {
89 // UnicodeString handles -1 for strLen
90 UnicodeString s(strLen<0, str, strLen);
95 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen) {
96 // UnicodeString handles -1 for strLen
97 UnicodeString s(str, strLen);
112 uset_removeString(USet* set, const UChar* str, int32_t strLen) {
113 UnicodeString s(strLen==-1, str, strLen);
178 uset_containsString(const USet* set, const UChar* str, int32_t strLen) {
179 UnicodeString s(strLen==-1, str, strLen);
189 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen) {
191 UnicodeString s(strLen==-1, str, strLen);