Home | History | Annotate | Download | only in common

Lines Matching refs:strLen

90 uset_addString(USet* set, const UChar* str, int32_t strLen) {
91 // UnicodeString handles -1 for strLen
92 UnicodeString s(strLen<0, str, strLen);
97 uset_addAllCodePoints(USet* set, const UChar *str, int32_t strLen) {
98 // UnicodeString handles -1 for strLen
99 UnicodeString s(str, strLen);
114 uset_removeString(USet* set, const UChar* str, int32_t strLen) {
115 UnicodeString s(strLen==-1, str, strLen);
175 uset_containsString(const USet* set, const UChar* str, int32_t strLen) {
176 UnicodeString s(strLen==-1, str, strLen);
186 uset_containsAllCodePoints(const USet* set, const UChar *str, int32_t strLen) {
188 UnicodeString s(strLen==-1, str, strLen);