/external/clang/include/clang/AST/ |
StmtCXX.h | 63 /// CXXTryStmt - A C++ try block, including all handlers. 65 class CXXTryStmt : public Stmt { 69 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers); 71 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) 82 static CXXTryStmt *Create(ASTContext &C, SourceLocation tryLoc, 85 static CXXTryStmt *Create(ASTContext &C, EmptyShell Empty,
|
RecursiveASTVisitor.h | [all...] |
/external/clang/lib/AST/ |
Stmt.cpp | 764 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, SourceLocation tryLoc, 766 std::size_t Size = sizeof(CXXTryStmt); 769 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>()); 770 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers); 773 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, EmptyShell Empty, 775 std::size_t Size = sizeof(CXXTryStmt); 778 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>()); 779 return new (Mem) CXXTryStmt(Empty, numHandlers) [all...] |
StmtPrinter.cpp | 532 void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) { [all...] |
StmtProfile.cpp | 191 void StmtProfiler::VisitCXXTryStmt(const CXXTryStmt *S) { [all...] |
/external/clang/lib/CodeGen/ |
CGClass.cpp | 714 bool IsTryBody = (Body && isa<CXXTryStmt>(Body)); 716 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true); 729 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock()); 740 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true); [all...] |
CGException.cpp | 579 void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { 585 void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) { [all...] |
CodeGenFunction.h | 52 class CXXTryStmt; [all...] |
CGStmt.cpp | 165 EmitCXXTryStmt(cast<CXXTryStmt>(*S)); [all...] |
/external/clang/lib/Analysis/ |
ReachableCode.cpp | 233 return cast<CXXTryStmt>(S)->getHandler(0)->getCatchLoc();
|
CFG.cpp | 371 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S); [all...] |
/external/clang/lib/Sema/ |
JumpDiagnostics.cpp | 341 CXXTryStmt *TS = cast<CXXTryStmt>(S);
|
AnalysisBasedWarnings.cpp | 119 if (b.getTerminator() && isa<CXXTryStmt>(b.getTerminator())) 166 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) { 195 if (isa<CXXTryStmt>(S)) { [all...] |
SemaStmt.cpp | [all...] |
SemaDeclCXX.cpp | [all...] |
SemaDecl.cpp | [all...] |
TreeTransform.h | [all...] |
/external/chromium_org/v8/tools/gcmole/ |
gcmole.cc | 889 VISIT(CXXTryStmt); 926 IGNORE_STMT(CXXTryStmt); [all...] |
/external/v8/tools/gcmole/ |
gcmole.cc | 891 VISIT(CXXTryStmt); 928 IGNORE_STMT(CXXTryStmt); [all...] |
/external/clang/include/clang/ASTMatchers/ |
ASTMatchers.h | 1009 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXTryStmt> tryStmt; [all...] |
/external/clang/tools/libclang/ |
RecursiveASTVisitor.h | [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | [all...] |
ASTWriterStmt.cpp | [all...] |
/external/clang/include/clang/Sema/ |
Sema.h | 85 class CXXTryStmt; [all...] |