HomeSort by relevance Sort by last modified time
    Searched refs:CXXTryStmt (Results 1 - 25 of 25) 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(const ASTContext &C, SourceLocation tryLoc,
85 static CXXTryStmt *Create(const ASTContext &C, EmptyShell Empty,
DataRecursiveASTVisitor.h     [all...]
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
Stmt.cpp 822 CXXTryStmt *CXXTryStmt::Create(const ASTContext &C, SourceLocation tryLoc,
824 std::size_t Size = sizeof(CXXTryStmt);
827 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
828 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
831 CXXTryStmt *CXXTryStmt::Create(const ASTContext &C, EmptyShell Empty,
833 std::size_t Size = sizeof(CXXTryStmt);
836 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
837 return new (Mem) CXXTryStmt(Empty, numHandlers)
    [all...]
StmtProfile.cpp 190 void StmtProfiler::VisitCXXTryStmt(const CXXTryStmt *S) {
    [all...]
StmtPrinter.cpp 526 void StmtPrinter::VisitCXXTryStmt(CXXTryStmt *Node) {
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 796 bool IsTryBody = (Body && isa<CXXTryStmt>(Body));
798 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true);
814 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock());
825 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true);
    [all...]
CodeGenPGO.cpp 123 CXXTryStmt,
215 return PGOHash::CXXTryStmt;
551 void VisitCXXTryStmt(const CXXTryStmt *S) {
CGException.cpp 545 void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
551 void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
899 void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
    [all...]
CodeGenFunction.h 55 class CXXTryStmt;
    [all...]
CoverageMappingGen.cpp 812 void VisitCXXTryStmt(const CXXTryStmt *S) {
    [all...]
CGStmt.cpp 169 EmitCXXTryStmt(cast<CXXTryStmt>(*S));
    [all...]
  /external/clang/lib/Sema/
JumpDiagnostics.cpp 319 CXXTryStmt *TS = cast<CXXTryStmt>(S);
    [all...]
AnalysisBasedWarnings.cpp 303 if (B->getTerminator() && isa<CXXTryStmt>(B->getTerminator()))
350 if (B.getTerminator() && isa<CXXTryStmt>(B.getTerminator())) {
379 if (isa<CXXTryStmt>(S)) {
    [all...]
SemaStmt.cpp     [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Analysis/
ReachableCode.cpp 556 return cast<CXXTryStmt>(S)->getHandler(0)->getCatchLoc();
CFG.cpp 380 CFGBlock *VisitCXXTryStmt(CXXTryStmt *S);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 872 VISIT(CXXTryStmt);
909 IGNORE_STMT(CXXTryStmt);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h 87 class CXXTryStmt;
    [all...]

Completed in 686 milliseconds