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

/external/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp141 class NoReturn { class
143 ~NoReturn() __attribute__((noreturn));
149 NoReturn().f();
155 NoReturn(), 47;
159 extern bool check(const NoReturn&);
164 if (!value || check(NoReturn())) {
174 if (!value || !value || check(NoReturn())) {
184 if (!value || value || check(NoReturn())) {
1084 // CHECK: 2: NoReturn() (CXXConstructExpr, class NoReturn)
[all...]
H A Ddtor.cpp469 namespace NoReturn { namespace
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp219 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}} function
/external/clang/test/SemaCXX/
H A Dreturn-noreturn.cpp149 struct NoReturn { struct
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn();
163 true ? NoReturn() : Return();
167 true ? Return() : NoReturn();
171 false ? Return() : NoReturn();
175 false ? NoReturn() : Return();
179 value ? (NoReturn() || NoReturn())
[all...]
H A Dcxx1y-deduced-return-type.cpp304 namespace NoReturn { namespace in namespace:std_examples
/external/llvm/include/llvm/IR/
H A DAttributes.h94 NoReturn, ///< Mark the function as not returning enumerator in enum:llvm::Attribute::AttrKind
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp3463 bool NoReturn = FunctionTypeP->getNoReturnAttr(); local
3467 ArgFunctionTypeP->getNoReturnAttr() == NoReturn)
3471 EI = EI.withNoReturn(NoReturn);
H A DSemaExpr.cpp11285 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>(); local
11307 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
11318 (!NoReturn || FTy->getNoReturnAttr())) {
11333 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
/external/clang/lib/Analysis/
H A DCFG.cpp1793 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); local
1809 NoReturn = true;
1820 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
1827 if (!NoReturn && !AddEHEdge) {
1837 if (NoReturn)

Completed in 284 milliseconds