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

/external/clang/test/Analysis/
H A Dtemp-obj-dtors-cfg-output.cpp143 class NoReturn { class
145 ~NoReturn() __attribute__((noreturn));
151 NoReturn().f();
157 NoReturn(), 47;
161 extern bool check(const NoReturn&);
166 if (!value || check(NoReturn())) {
176 if (!value || !value || check(NoReturn())) {
186 if (!value || value || check(NoReturn())) {
1094 // CHECK: 2: NoReturn() (CXXConstructExpr, class NoReturn)
[all...]
H A Ddtor.cpp469 namespace NoReturn { namespace
/external/swiftshader/third_party/LLVM/include/llvm/
H A DAttributes.h39 const Attributes NoReturn = 1<<2; ///< Mark the function as not returning member in namespace:llvm::Attribute
92 const Attributes FunctionOnly = NoReturn | NoUnwind | ReadNone | ReadOnly |
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp223 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/clang/lib/Analysis/
H A DCFG.cpp1850 bool NoReturn = getFunctionExtInfo(*calleeType).getNoReturn(); local
1866 NoReturn = true;
1877 assert(!NoReturn && "noreturn calls with unevaluated args not implemented");
1884 if (!NoReturn && !AddEHEdge) {
1894 if (NoReturn)
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp3521 bool NoReturn = FunctionTypeP->getNoReturnAttr(); local
3525 ArgFunctionTypeP->getNoReturnAttr() == NoReturn)
3529 EI = EI.withNoReturn(NoReturn);
H A DSemaExpr.cpp12112 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>(); local
12132 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
12143 (!NoReturn || FTy->getNoReturnAttr())) {
12158 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);

Completed in 325 milliseconds