Home | History | Annotate | Download | only in Support

Lines Matching refs:handleErrors

121 /// handleErrors or handleAllErrors function with a typed handler. E.g.:
132 /// handleErrors(E,
148 /// The handleAllErrors function is identical to handleErrors, except
161 // handleErrors needs to be able to set the Checked flag.
163 friend Error handleErrors(Error E, HandlerTs &&... Handlers);
343 // handleErrors needs to be able to iterate the payload list of an
346 friend Error handleErrors(Error E, HandlerTs &&... Handlers);
857 Error handleErrors(Error E, HandlerTs &&... Hs) {
876 /// Behaves the same as handleErrors, except that it requires that all
881 cantFail(handleErrors(std::move(E), std::forward<HandlerTs>(Handlers)...));
893 /// is a failure value then it the contained error is passed to handleErrors.
894 /// If handleErrors is able to handle the error then the RecoveryPath functor
895 /// is called to supply the final result. If handleErrors is not able to
920 if (auto Err = handleErrors(ValOrErr.takeError(),