Searched refs:IsNoexcept (Results 1 – 3 of 3) sorted by relevance
35 template <bool IsNoexcept, class Ret, class ...Args>37 Ret operator()(Args&&...) const noexcept(IsNoexcept);
187 template <bool IsNoexcept>190 NothrowMoveable operator()(Args...) const noexcept(IsNoexcept) { return {}; } in operator ()()
3363 bool IsNoexcept = Tok.is(tok::kw_noexcept); in tryParseExceptionSpecification() local3370 if (IsNoexcept) { in tryParseExceptionSpecification()3457 Parser &P, SourceRange Range, bool IsNoexcept) { in diagnoseDynamicExceptionSpecification() argument3459 const char *Replacement = IsNoexcept ? "noexcept" : "noexcept(false)"; in diagnoseDynamicExceptionSpecification()