Home | History | Annotate | Download | only in common

Lines Matching refs:ec

283     UErrorCode ec = U_ZERO_ERROR;
284 ensureCapacity(o.len, ec);
285 if (U_FAILURE(ec)) {
300 strings->assign(*o.strings, cloneUnicodeString, ec);
1028 UErrorCode ec = U_ZERO_ERROR;
1029 strings->sortedInsert(t, compareUnicodeString, ec);
1030 if (U_FAILURE(ec)) {
1478 UnicodeSet::UnicodeSet(const uint16_t data[], int32_t dataLen, ESerialization serialization, UErrorCode &ec)
1483 if(U_FAILURE(ec)) {
1491 ec = U_ILLEGAL_ARGUMENT_ERROR;
1496 allocateStrings(ec);
1497 if (U_FAILURE(ec)) {
1512 if(!list || U_FAILURE(ec)) {
1537 int32_t UnicodeSet::serialize(uint16_t *dest, int32_t destCapacity, UErrorCode& ec) const {
1540 if (U_FAILURE(ec)) {
1545 ec=U_ILLEGAL_ARGUMENT_ERROR;
1557 ec=U_BUFFER_OVERFLOW_ERROR;
1581 ec=U_INDEX_OUTOFBOUNDS_ERROR;
1624 ec=U_BUFFER_OVERFLOW_ERROR;
1654 void UnicodeSet::ensureCapacity(int32_t newLen, UErrorCode& ec) {
1659 ec = U_MEMORY_ALLOCATION_ERROR;
1668 void UnicodeSet::ensureBufferCapacity(int32_t newLen, UErrorCode& ec) {
1673 ec = U_MEMORY_ALLOCATION_ERROR;