HomeSort by relevance Sort by last modified time
    Searched refs:CXXTryStmt (Results 1 - 22 of 22) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 60 /// CXXTryStmt - A C++ try block, including all handlers.
62 class CXXTryStmt : public Stmt {
66 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, Stmt **handlers,
69 CXXTryStmt(EmptyShell Empty, unsigned numHandlers)
80 static CXXTryStmt *Create(ASTContext &C, SourceLocation tryLoc,
84 static CXXTryStmt *Create(ASTContext &C, EmptyShell Empty,
114 static bool classof(const CXXTryStmt *) { return true; }
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 783 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, SourceLocation tryLoc,
786 std::size_t Size = sizeof(CXXTryStmt);
789 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
790 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers, numHandlers);
793 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, EmptyShell Empty,
795 std::size_t Size = sizeof(CXXTryStmt);
798 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
799 return new (Mem) CXXTryStmt(Empty, numHandlers)
    [all...]
StmtPrinter.cpp 516 void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) {
    [all...]
StmtProfile.cpp 191 void StmtProfiler::VisitCXXTryStmt(const CXXTryStmt *S) {
  /external/clang/lib/CodeGen/
CGClass.cpp 742 bool IsTryBody = (Body && isa<CXXTryStmt>(Body));
744 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true);
757 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock());
768 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true);
    [all...]
CGException.cpp 575 void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
581 void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
    [all...]
CodeGenFunction.h 50 class CXXTryStmt;
    [all...]
CGStmt.cpp 161 EmitCXXTryStmt(cast<CXXTryStmt>(*S));
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 423 if (CXXTryStmt *TS = dyn_cast<CXXTryStmt>(SubStmt)) {
AnalysisBasedWarnings.cpp 115 if (b.getTerminator() && isa<CXXTryStmt>(b.getTerminator()))
162 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) {
191 if (isa<CXXTryStmt>(S)) {
    [all...]
SemaStmt.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 233 return cast<CXXTryStmt>(S)->getHandler(0)->getCatchLoc();
CFG.cpp 333 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 891 VISIT(CXXTryStmt);
928 IGNORE_STMT(CXXTryStmt);
    [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 77 class CXXTryStmt;
    [all...]

Completed in 672 milliseconds