Searched defs:NoReturn (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp118 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}} function
/external/clang/lib/Analysis/
H A DCFG.cpp1394 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); local
1406 NoReturn = true;
1414 if (!NoReturn && !AddEHEdge)
1423 if (NoReturn)
/external/clang/lib/AST/
H A DASTContext.cpp6347 bool NoReturn = lbaseInfo.getNoReturn() || rbaseInfo.getNoReturn(); local
6349 FunctionType::ExtInfo einfo = lbaseInfo.withNoReturn(NoReturn);
/external/clang/lib/Sema/
H A DSemaExpr.cpp9414 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); local
9436 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
9447 (!NoReturn || FTy->getNoReturnAttr())) {
9465 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);

Completed in 174 milliseconds