Lines Matching defs:status
37 UErrorCode status = U_ZERO_ERROR;
38 data = new UVector32(status);
39 data->assign(*rhs.data, status);
40 if (status != U_ZERO_ERROR) {
61 void FieldPositionIterator::setData(UVector32 *adopt, UErrorCode& status) {
62 // Verify that adopt has valid data, and update status if it doesn't.
63 if (U_SUCCESS(status)) {
69 status = U_ILLEGAL_ARGUMENT_ERROR;
73 status = U_ILLEGAL_ARGUMENT_ERROR;
81 // We own the data, even if status is in error, so we need to delete it now
83 if (!U_SUCCESS(status)) {