reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 4250   return FnTy->isNothrow();
tools/clang/lib/AST/ExprCXX.cpp
  295              ->isNothrow() &&
tools/clang/lib/AST/ItaniumMangle.cpp
 2829   } else if (T->isNothrow()) {
tools/clang/lib/Analysis/CFG.cpp
 2558           Proto->isNothrow())
tools/clang/lib/CodeGen/CGCall.cpp
 1686       FPT->isNothrow())
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 3752     if (Proto->isNothrow()) {
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  371   if (FPT->isNothrow() || FD->hasAttr<NoThrowAttr>())
tools/clang/lib/Sema/SemaChecking.cpp
 9998       if (!Proto->isNothrow(/*ResultIfDependent*/true) &&
tools/clang/lib/Sema/SemaCoroutine.cpp
 1231     if (!FT->isNothrow(/*ResultIfDependent*/ false)) {
tools/clang/lib/Sema/SemaDecl.cpp
10555           if (FPT->isNothrow())
tools/clang/lib/Sema/SemaExprCXX.cpp
 4493         if (!CPT || !CPT->isNothrow())
 4743         if (!CPT || !CPT->isNothrow())
 4836           if (!CPT->isNothrow() || CPT->getNumParams() > 1)
 4875           if (!CPT->isNothrow() || CPT->getNumParams() > 0)
tools/clang/lib/Sema/SemaOverload.cpp
 1535     if (FromFPT->isNothrow() && !ToFPT->isNothrow()) {
 1535     if (FromFPT->isNothrow() && !ToFPT->isNothrow()) {
 2879           ->isNothrow() !=
 2881           ->isNothrow()) {
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  719         if (!ProtoType->isNothrow())
  794         if (!ProtoType->isNothrow())
tools/clang/tools/extra/clang-tidy/modernize/UseNoexceptCheck.cpp
   91   bool IsNoThrow = FnTy->isNothrow();