Home | History | Annotate | Download | only in common

Lines Matching defs:status

50                        UErrorCode& status) :
55 if(U_SUCCESS(status)){
59 status = U_MEMORY_ALLOCATION_ERROR;
61 allocateStrings(status);
62 applyPattern(pattern, options, symbols, status);
71 UErrorCode& status) :
76 if(U_SUCCESS(status)){
80 status = U_MEMORY_ALLOCATION_ERROR;
82 allocateStrings(status);
83 applyPattern(pattern, pos, options, symbols, status);
96 UErrorCode& status) {
98 applyPattern(pattern, pos, options, symbols, status);
99 if (U_FAILURE(status)) return *this;
109 status = U_ILLEGAL_ARGUMENT_ERROR;
118 UErrorCode& status) {
119 if (U_FAILURE(status)) {
123 status = U_NO_WRITE_PERMISSION;
130 applyPattern(chars, symbols, rebuiltPat, options, &UnicodeSet::closeOver, status);
131 if (U_FAILURE(status)) return *this;
134 status = U_MALFORMED_SET;
249 UErrorCode status = U_ZERO_ERROR;
250 BreakIterator *bi = BreakIterator::createWordInstance(root, status);
251 if (U_SUCCESS(status)) {