| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 334 Stmt *Throw; variable 338 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) { in ObjCAtThrowStmt() 344 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); } in getThrowExpr() 345 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); } in getThrowExpr() 346 void setThrowExpr(Stmt *S) { Throw = S; } in setThrowExpr() 353 return Throw ? Throw->getEndLoc() : AtThrowLoc; in getEndLoc() 360 child_range children() { return child_range(&Throw, &Throw+1); } in children() 363 return const_child_range(&Throw, &Throw + 1); in children()
|
| H A D | CommentCommands.td | 116 def Throw : BlockCommand<"throw"> { let IsThrowsCommand = 1; }
|
| /freebsd-13.1/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-more-actions.h | 234 ACTION_P(Throw, exception) { throw exception; } in ACTION_P() argument
|
| /freebsd-13.1/contrib/googletest/googlemock/test/ |
| H A D | gmock-more-actions_test.cc | 602 const Action<void(int n)> a = Throw('a'); in TEST() 609 const Action<double(char ch)> a = Throw(MyException()); in TEST() 614 const Action<double()> a = Throw(MyException()); in TEST()
|
| H A D | gmock_link_test.h | 190 using testing::Throw; 416 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Throw(42)); in TEST()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4166 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) { in BuildObjCAtThrowStmt() argument 4167 if (Throw) { in BuildObjCAtThrowStmt() 4168 ExprResult Result = DefaultLvalueConversion(Throw); in BuildObjCAtThrowStmt() 4175 Throw = Result.get(); in BuildObjCAtThrowStmt() 4177 QualType ThrowType = Throw->getType(); in BuildObjCAtThrowStmt() 4184 << Throw->getType() << Throw->getSourceRange()); in BuildObjCAtThrowStmt() 4188 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt() 4192 Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw, in ActOnObjCAtThrowStmt() argument 4197 if (!Throw) { in ActOnObjCAtThrowStmt() 4206 return BuildObjCAtThrowStmt(AtLoc, Throw); in ActOnObjCAtThrowStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 332 if (auto *Throw = dyn_cast<CXXThrowExpr>(S->getStmt())) in visitReachableThrows() local 333 Visit(Throw, *B); in visitReachableThrows() 365 visitReachableThrows(BodyCFG, [&](const CXXThrowExpr *Throw, CFGBlock &Block) { in checkThrowInNonThrowingFunc() argument 366 if (throwEscapes(S, Throw, Block, BodyCFG)) in checkThrowInNonThrowingFunc() 367 EmitDiagForCXXThrowInNonThrowingFunc(S, Throw->getThrowLoc(), FD); in checkThrowInNonThrowingFunc()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCGNU.cpp | 3972 llvm::CallBase *Throw = CGF.EmitRuntimeCallOrInvoke(ExceptionReThrowFn); in EmitThrowStmt() local 3973 Throw->setDoesNotReturn(); in EmitThrowStmt() 3977 llvm::CallBase *Throw = in EmitThrowStmt() local 3979 Throw->setDoesNotReturn(); in EmitThrowStmt()
|
| H A D | CodeGenFunction.cpp | 1786 if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) { in EmitBranchOnBoolExpr() local 1792 EmitCXXThrowExpr(Throw, /*KeepInsertionPoint*/false); in EmitBranchOnBoolExpr()
|
| H A D | MicrosoftCXXABI.cpp | 753 llvm::FunctionCallee Throw = in getThrowFn() local 757 if (auto *Fn = dyn_cast<llvm::Function>(Throw.getCallee())) in getThrowFn() 760 return Throw; in getThrowFn()
|
| /freebsd-13.1/usr.sbin/bsdconfig/share/ |
| H A D | dialog.subr | 1537 # Throw up a dialog(1) infobox. The infobox remains until another dialog is 1555 # Throw up an Xdialog(1) infobox and do not dismiss it until stdin produces 1635 # Throw up a dialog(1) msgbox. The msgbox remains until the user presses ENTER
|
| /freebsd-13.1/sys/contrib/openzfs/config/ |
| H A D | lib-link.m4 | 613 dnl Handle this in the next round. Throw away the .la's
|
| /freebsd-13.1/contrib/googletest/googlemock/docs/ |
| H A D | CheatSheet.md | 384 |`Throw(exception)` |Throws the given exception, which can be any copyable value. Available …
|
| /freebsd-13.1/contrib/bmake/mk/ |
| H A D | ChangeLog | 66 e'X'it for each one. Throw an error if we are missing any 'X'
|
| /freebsd-13.1/contrib/googletest/googletest/test/ |
| H A D | gtest_unittest.cc | 6742 TEST(StreamingAssertionsTest, Throw) { in TEST() argument
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 4852 StmtResult BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw); 4853 StmtResult ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw,
|