Home | History | Annotate | Download | only in i18n

Lines Matching refs:errorCode

381         UErrorCode errorCode = U_ZERO_ERROR;
383 offsets_ = new UVector32(other.offsets_->size(), errorCode);
386 offsets_->assign(*other.offsets_, errorCode);
396 MaxExpSink(UHashtable *h, UErrorCode &ec) : maxExpansions(h), errorCode(ec) {}
420 uhash_iputi(maxExpansions, (int32_t)lastHalf, count, &errorCode);
426 UErrorCode &errorCode;
434 CollationElementIterator::computeMaxExpansions(const CollationData *data, UErrorCode &errorCode) {
435 if (U_FAILURE(errorCode)) { return NULL; }
437 uhash_compareLong, &errorCode);
438 if (U_FAILURE(errorCode)) { return NULL; }
439 MaxExpSink sink(maxExpansions, errorCode);
440 ContractionsAndExpansions(NULL, NULL, &sink, TRUE).forData(data, errorCode);
441 if (U_FAILURE(errorCode)) {