Lines Matching defs:status
35 UErrorCode status = U_ZERO_ERROR;
36 data = new UVector32(status);
37 data->assign(*rhs.data, status);
38 if (status != U_ZERO_ERROR) {
59 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) {
60 // Verify that adopt has valid data, and update status if it doesn't.
61 if (U_SUCCESS(status)) {
64 status = U_ILLEGAL_ARGUMENT_ERROR;
68 status = U_ILLEGAL_ARGUMENT_ERROR;
76 // We own the data, even if status is in error, so we need to delete it now
78 if (!U_SUCCESS(status)) {