Home | History | Annotate | Download | only in Support

Lines Matching defs:cantFail

677 ///   cantFail(foo(false));
679 inline void cantFail(Error Err, const char *Msg = nullptr) {
682 Msg = "Failure value returned from cantFail wrapped call";
698 /// int X = cantFail(foo(false));
701 T cantFail(Expected<T> ValOrErr, const char *Msg = nullptr) {
706 Msg = "Failure value returned from cantFail wrapped call";
722 /// Bar &X = cantFail(foo(false));
725 T& cantFail(Expected<T&> ValOrErr, const char *Msg = nullptr) {
730 Msg = "Failure value returned from cantFail wrapped call";
881 cantFail(handleErrors(std::move(E), std::forward<HandlerTs>(Handlers)...));
887 cantFail(std::move(E));