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

References

tools/clang/lib/AST/ASTContext.cpp
 8718   FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
 9741   if (BuiltinInfo.isNoReturn(Id)) EI = EI.withNoReturn(true);
tools/clang/lib/Sema/SemaDecl.cpp
 3324     NewTypeInfo = NewTypeInfo.withNoReturn(true);
 3571         = Context.adjustFunctionType(OldType, OldTypeInfo.withNoReturn(true));
tools/clang/lib/Sema/SemaExpr.cpp
14270     if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
14296     EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
tools/clang/lib/Sema/SemaExprCXX.cpp
 6256         EPI1.ExtInfo = EPI1.ExtInfo.withNoReturn(Noreturn);
 6257         EPI2.ExtInfo = EPI2.ExtInfo.withNoReturn(Noreturn);
tools/clang/lib/Sema/SemaOverload.cpp
 1528     FromFn = Context.adjustFunctionType(FromFn, FromEInfo.withNoReturn(false));
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 3980     EPI.ExtInfo = EPI.ExtInfo.withNoReturn(NoReturn);
tools/clang/lib/Sema/SemaType.cpp
 6858     FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true);