Home
last modified time | relevance | path

Searched refs:otherLen (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/icu-small/source/common/unicode/
Duniset.h1628 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity);
1630 void add(const UChar32* other, int32_t otherLen, int8_t polarity);
1632 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
/third_party/icu/icu4c/source/common/unicode/
Duniset.h1615 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity);
1617 void add(const UChar32* other, int32_t otherLen, int8_t polarity);
1619 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
/third_party/skia/third_party/externals/icu/source/common/unicode/
Duniset.h1588 void exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity);
1590 void add(const UChar32* other, int32_t otherLen, int8_t polarity);
1592 void retain(const UChar32* other, int32_t otherLen, int8_t polarity);
/third_party/node/deps/icu-small/source/common/
Duniset.cpp1717 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { in exclusiveOr() argument
1721 if (!ensureBufferCapacity(len + otherLen)) { in exclusiveOr()
1765 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { in add() argument
1769 if (!ensureBufferCapacity(len + otherLen)) { in add()
1876 void UnicodeSet::retain(const UChar32* other, int32_t otherLen, int8_t polarity) { in retain() argument
1880 if (!ensureBufferCapacity(len + otherLen)) { in retain()
/third_party/icu/icu4c/source/common/
Duniset.cpp1717 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { in exclusiveOr() argument
1721 if (!ensureBufferCapacity(len + otherLen)) { in exclusiveOr()
1765 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { in add() argument
1769 if (!ensureBufferCapacity(len + otherLen)) { in add()
1876 void UnicodeSet::retain(const UChar32* other, int32_t otherLen, int8_t polarity) { in retain() argument
1880 if (!ensureBufferCapacity(len + otherLen)) { in retain()
/third_party/skia/third_party/externals/icu/source/common/
Duniset.cpp1718 void UnicodeSet::exclusiveOr(const UChar32* other, int32_t otherLen, int8_t polarity) { in exclusiveOr() argument
1722 if (!ensureBufferCapacity(len + otherLen)) { in exclusiveOr()
1766 void UnicodeSet::add(const UChar32* other, int32_t otherLen, int8_t polarity) { in add() argument
1770 if (!ensureBufferCapacity(len + otherLen)) { in add()
1877 void UnicodeSet::retain(const UChar32* other, int32_t otherLen, int8_t polarity) { in retain() argument
1881 if (!ensureBufferCapacity(len + otherLen)) { in retain()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java3105 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument
3106 ensureBufferCapacity(len + otherLen); in xor()
3155 private UnicodeSet add(int[] other, int otherLen, int polarity) { in add() argument
3156 ensureBufferCapacity(len + otherLen); in add()
3253 private UnicodeSet retain(int[] other, int otherLen, int polarity) { in retain() argument
3254 ensureBufferCapacity(len + otherLen); in retain()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DUnicodeSet.java2991 private UnicodeSet xor(int[] other, int otherLen, int polarity) { in xor() argument
2992 ensureBufferCapacity(len + otherLen); in xor()
3041 private UnicodeSet add(int[] other, int otherLen, int polarity) { in add() argument
3042 ensureBufferCapacity(len + otherLen); in add()
3139 private UnicodeSet retain(int[] other, int otherLen, int polarity) { in retain() argument
3140 ensureBufferCapacity(len + otherLen); in retain()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp58184 index_type otherLen = aArray.Length(); in AppendElements() local
58186 len + otherLen, sizeof(elem_type)))) { in AppendElements()
58189 copy_type::MoveNonOverlappingRegion(Elements() + len, aArray.Elements(), otherLen, in AppendElements()
58191 this->IncrementLength(otherLen); in AppendElements()
58192 aArray.template ShiftData<Alloc>(0, otherLen, 0, sizeof(elem_type), in AppendElements()