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

References

tools/clang/include/clang/AST/Type.h
 3659   bool getNoReturnAttr() const { return getExtInfo().getNoReturn(); }
tools/clang/include/clang/CodeGen/CGFunctionInfo.h
  691     ID.AddBoolean(info.getNoReturn());
tools/clang/lib/AST/ASTContext.cpp
 8711   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
 8711   bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn();
 8713   if (lbaseInfo.getNoReturn() != NoReturn)
 8715   if (rbaseInfo.getNoReturn() != NoReturn)
tools/clang/lib/AST/JSONNodeDumper.cpp
  491   attributeOnlyIfTrue("noreturn", E.getNoReturn());
tools/clang/lib/AST/TextNodeDumper.cpp
 1133   if (EI.getNoReturn())
tools/clang/lib/AST/TypePrinter.cpp
  910   if (Info.getNoReturn())
tools/clang/lib/Analysis/CFG.cpp
 2576   bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn();
tools/clang/lib/CodeGen/CGCall.cpp
  817   FI->NoReturn = info.getNoReturn();
tools/clang/lib/CodeGen/CoverageMappingGen.cpp
  946     if (getFunctionExtInfo(*CalleeType).getNoReturn())
tools/clang/lib/Sema/SemaDecl.cpp
 3323   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
 3323   if (OldTypeInfo.getNoReturn() && !NewTypeInfo.getNoReturn()) {
 3568     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
 3568     if (!OldTypeInfo.getNoReturn() && NewTypeInfo.getNoReturn()) {
tools/clang/lib/Sema/SemaExpr.cpp
14270     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
tools/clang/lib/Sema/SemaExprCXX.cpp
 6255             EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn();
 6255             EPI1.ExtInfo.getNoReturn() && EPI2.ExtInfo.getNoReturn();
tools/clang/lib/Sema/SemaOverload.cpp
 1527   if (FromEInfo.getNoReturn() && !ToEInfo.getNoReturn()) {
 1527   if (FromEInfo.getNoReturn() && !ToEInfo.getNoReturn()) {
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 3979   if (EPI.ExtInfo.getNoReturn() != NoReturn) {
tools/clang/lib/Serialization/ASTWriter.cpp
  273   Record.push_back(C.getNoReturn());
tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
   49     BuildSinks = getFunctionExtInfo(Callee->getType()).getNoReturn();