Searched refs:CXXThrowExpr (Results 1 - 21 of 21) sorted by relevance

/external/clang/lib/AST/
H A DExprClassification.cpp550 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts());
551 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts());
H A DStmtProfile.cpp930 void StmtProfiler::VisitCXXThrowExpr(const CXXThrowExpr *S) {
H A DItaniumMangle.cpp2893 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc557 VISIT(CXXThrowExpr);
707 DECL_VISIT_EXPR(CXXThrowExpr) {
/external/clang/include/clang/AST/
H A DExprCXX.h801 class CXXThrowExpr : public Expr { class in namespace:clang
813 CXXThrowExpr(Expr *expr, QualType Ty, SourceLocation l, function in class:clang::CXXThrowExpr
819 CXXThrowExpr(EmptyShell Empty) : Expr(CXXThrowExprClass, Empty) {} function in class:clang::CXXThrowExpr
H A DDataRecursiveASTVisitor.h2185 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
H A DRecursiveASTVisitor.h2207 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp1108 if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) {
H A DCGException.cpp404 void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E,
H A DCGExprAgg.cpp192 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); }
H A DCodeGenFunction.h2446 void EmitCXXThrowExpr(const CXXThrowExpr *E, bool KeepInsertionPoint = true);
H A DCGExpr.cpp2697 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(Operand->IgnoreParens())) {
H A DCGExprScalar.cpp400 Value *VisitCXXThrowExpr(const CXXThrowExpr *E) {
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1112 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr> throwExpr;
/external/clang/lib/Analysis/
H A DCFG.cpp373 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
1393 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
2736 CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) {
H A DThreadSafety.cpp2327 if (isa<CXXThrowExpr>(S->getStmt()))
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp633 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope);
4400 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts());
4401 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts());
H A DAnalysisBasedWarnings.cpp367 if (isa<CXXThrowExpr>(S)) {
H A DTreeTransform.h7875 TreeTransform<Derived>::TransformCXXThrowExpr(CXXThrowExpr *E) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1311 void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) {
2560 S = new (Context) CXXThrowExpr(Empty);
H A DASTWriterStmt.cpp1276 void ASTStmtWriter::VisitCXXThrowExpr(CXXThrowExpr *E) {

Completed in 347 milliseconds