Home | History | Annotate | Download | only in i18n

Lines Matching refs:errorCode

33 RuleBasedCollator::cloneRuleData(int32_t &length, UErrorCode &errorCode) const {
34 if(U_FAILURE(errorCode)) { return NULL; }
37 errorCode = U_MEMORY_ALLOCATION_ERROR;
40 length = cloneBinary(buffer.getAlias(), 20000, errorCode);
41 if(errorCode == U_BUFFER_OVERFLOW_ERROR) {
43 errorCode = U_MEMORY_ALLOCATION_ERROR;
46 errorCode = U_ZERO_ERROR;
47 length = cloneBinary(buffer.getAlias(), length, errorCode);
49 if(U_FAILURE(errorCode)) { return NULL; }
54 RuleBasedCollator::cloneBinary(uint8_t *dest, int32_t capacity, UErrorCode &errorCode) const {
58 errorCode);
79 UErrorCode &errorCode) {
83 indexes, dest, capacity, errorCode);
89 UErrorCode &errorCode) {
93 indexes, dest, capacity, errorCode);
101 UErrorCode &errorCode) {
102 if(U_FAILURE(errorCode)) { return 0; }
104 errorCode = U_ILLEGAL_ARGUMENT_ERROR;
232 errorCode = errorCode2;
274 errorCode = errorCode2;
297 errorCode = U_BUFFER_OVERFLOW_ERROR;