Searched refs:CXXThrowExpr (Results 1 – 25 of 26) sorted by relevance
12
/external/clang/lib/AST/ |
D | ExprClassification.cpp | 553 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts()); in ClassifyConditional() 554 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts()); in ClassifyConditional()
|
D | StmtProfile.cpp | 1068 void StmtProfiler::VisitCXXThrowExpr(const CXXThrowExpr *S) { in VisitCXXThrowExpr()
|
D | ItaniumMangle.cpp | 3031 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E); in mangleExpression()
|
D | StmtPrinter.cpp | 1673 void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) { in VisitCXXThrowExpr()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 109 def CXXThrowExpr : DStmt<Expr>;
|
/external/clang/lib/CodeGen/ |
D | CGCXXABI.h | 218 virtual void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) = 0;
|
D | CodeGenFunction.cpp | 1178 if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) { in EmitBranchOnBoolExpr()
|
D | CGExprAgg.cpp | 197 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } in VisitCXXThrowExpr()
|
D | CGException.cpp | 412 void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E, in EmitCXXThrowExpr()
|
D | ItaniumCXXABI.cpp | 118 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 945 void ItaniumCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
D | MicrosoftCXXABI.cpp | 79 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 3713 void MicrosoftCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
D | CodeGenFunction.h | 2726 void EmitCXXThrowExpr(const CXXThrowExpr *E, bool KeepInsertionPoint = true);
|
D | CGExpr.cpp | 2845 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(Operand->IgnoreParens())) { in EmitLValueOrThrowExpression()
|
D | CGExprScalar.cpp | 441 Value *VisitCXXThrowExpr(const CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
/external/v8/tools/gcmole/ |
D | gcmole.cc | 557 VISIT(CXXThrowExpr); in VisitExpr() 707 DECL_VISIT_EXPR(CXXThrowExpr) { in DECL_VISIT_EXPR() argument
|
/external/clang/include/clang/AST/ |
D | ExprCXX.h | 808 class CXXThrowExpr : public Expr { 820 CXXThrowExpr(Expr *expr, QualType Ty, SourceLocation l, in CXXThrowExpr() function 826 CXXThrowExpr(EmptyShell Empty) : Expr(CXXThrowExprClass, Empty) {} in CXXThrowExpr() function
|
D | DataRecursiveASTVisitor.h | 2204 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
|
D | RecursiveASTVisitor.h | 2234 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
|
/external/clang/lib/Analysis/ |
D | CFG.cpp | 379 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); 1461 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); in Visit() 2803 CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { in VisitCXXThrowExpr()
|
D | ThreadSafety.cpp | 2071 if (isa<CXXThrowExpr>(S->getStmt())) in neverReturns()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 1340 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr> throwExpr;
|
/external/clang/lib/Sema/ |
D | SemaExprCXX.cpp | 684 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope); in BuildCXXThrow() 4546 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands() 4547 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands()
|
D | AnalysisBasedWarnings.cpp | 369 if (isa<CXXThrowExpr>(S)) { in CheckFallThrough()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1313 void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) { in VisitCXXThrowExpr() 2887 S = new (Context) CXXThrowExpr(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 1283 void ASTStmtWriter::VisitCXXThrowExpr(CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
12