Searched refs:otherLen (Results 1 – 2 of 2) sorted by relevance
/external/icu4c/common/unicode/ |
D | uniset.h | 1513 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity); 1515 void add(const UChar32* other, int32_t otherLen, int8_t polarity); 1517 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
|
/external/icu4c/common/ |
D | uniset.cpp | 1634 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { in exclusiveOr() argument 1639 ensureBufferCapacity(len + otherLen, status); in exclusiveOr() 1684 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { in add() argument 1689 ensureBufferCapacity(len + otherLen, status); in add() 1797 void UnicodeSet::retain(const UChar32* other, int32_t otherLen, int8_t polarity) { in retain() argument 1802 ensureBufferCapacity(len + otherLen, status); in retain()
|