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

  /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 772 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, SourceLocation tryLoc,
774 std::size_t Size = sizeof(CXXTryStmt);
777 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
778 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
781 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, EmptyShell Empty,
783 std::size_t Size = sizeof(CXXTryStmt);
786 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
787 return new (Mem) CXXTryStmt(Empty, numHandlers)
    [all...]
StmtPrinter.cpp 528 void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) {
    [all...]
StmtProfile.cpp 191 void StmtProfiler::VisitCXXTryStmt(const CXXTryStmt *S) {
  /external/clang/lib/CodeGen/
CGClass.cpp 724 bool IsTryBody = (Body && isa<CXXTryStmt>(Body));
726 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true);
739 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock());
750 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/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 336 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...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 891 VISIT(CXXTryStmt);
928 IGNORE_STMT(CXXTryStmt);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 909 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 80 class CXXTryStmt;
    [all...]

Completed in 1111 milliseconds