Lines Matching full:errorcode
23 UErrorCode &errorCode)
29 if(U_FAILURE(errorCode)) {
38 stack_=new UVector32(errorCode);
40 errorCode=U_MEMORY_ALLOCATION_ERROR;
45 UErrorCode &errorCode)
51 if(U_FAILURE(errorCode)) {
54 stack_=new UVector32(errorCode);
55 if(U_FAILURE(errorCode)) {
59 errorCode=U_MEMORY_ALLOCATION_ERROR;
99 UCharsTrie::Iterator::next(UErrorCode &errorCode) {
100 if(U_FAILURE(errorCode)) {
117 pos=branchNext(pos, length, errorCode);
165 pos=branchNext(pos, node+1, errorCode);
184 UCharsTrie::Iterator::branchNext(const UChar *pos, int32_t length, UErrorCode &errorCode) {
188 stack_->addElement((int32_t)(skipDelta(pos)-uchars_), errorCode);
189 stack_->addElement(((length-(length>>1))<<16)|str_.length(), errorCode);
201 stack_->addElement((int32_t)(pos-uchars_), errorCode);
202 stack_->addElement(((length-1)<<16)|str_.length(), errorCode);