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

  /external/clang/include/clang/AST/
StmtCXX.h 23 /// CXXCatchStmt - This represents a C++ catch block.
25 class CXXCatchStmt : public Stmt {
33 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock)
37 CXXCatchStmt(EmptyShell Empty)
52 static bool classof(const CXXCatchStmt *) { return true; }
103 CXXCatchStmt *getHandler(unsigned i) {
104 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
106 const CXXCatchStmt *getHandler(unsigned i) const {
107 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
JumpDiagnostics.cpp 432 CXXCatchStmt *CS = TS->getHandler(I);
TreeTransform.h     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 67 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
458 void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) {
468 void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) {
    [all...]
Stmt.cpp 454 QualType CXXCatchStmt::getCaughtType() const {
StmtProfile.cpp 172 void StmtProfiler::VisitCXXCatchStmt(const CXXCatchStmt *S) {
  /external/clang/lib/CodeGen/
CGException.cpp 556 const CXXCatchStmt *C = S.getHandler(I);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 310 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
907 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S));
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 965 void ASTStmtReader::VisitCXXCatchStmt(CXXCatchStmt *S) {
    [all...]
ASTWriterStmt.cpp 928 void ASTStmtWriter::VisitCXXCatchStmt(CXXCatchStmt *S) {
    [all...]

Completed in 767 milliseconds