Lines Matching full:checked
42 /// Destroy this error. Aborts if error was not checked, or was checked but
50 /// unchecked, even if the source error had been checked. The original error
51 /// becomes a checked success value.
59 /// considered unchecked. The source error becomes a checked success value,
66 // This Error is unchecked, even if the source error was checked.
69 // Null out Other's payload and set its checked bit.
101 fprintf(stderr, "Error must be checked prior to destruction.\n");
116 void setChecked(bool Checked) { ErrPtr = (ErrPtr & ~uintptr_t(1)) | Checked; }
166 /// Sets the 'checked' flag on construction, resets it on destruction.
170 // Raise the checked bit if Err is success.
176 // Clear the checked bit.
364 "Expected<T> must be checked before access or destruction.\n");