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

  /external/clang/include/clang/AST/
StmtCXX.h 24 /// CXXCatchStmt - This represents a C++ catch block.
26 class CXXCatchStmt : public Stmt {
34 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock)
38 CXXCatchStmt(EmptyShell Empty)
53 static bool classof(const CXXCatchStmt *) { return true; }
104 CXXCatchStmt *getHandler(unsigned i) {
105 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
107 const CXXCatchStmt *getHandler(unsigned i) const {
108 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 66 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
500 void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) {
510 void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) {
    [all...]
StmtProfile.cpp 186 void StmtProfiler::VisitCXXCatchStmt(const CXXCatchStmt *S) {
Stmt.cpp 640 QualType CXXCatchStmt::getCaughtType() const {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 31 class CXXCatchStmt;
379 void VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred,
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
JumpDiagnostics.cpp 433 CXXCatchStmt *CS = TS->getHandler(I);
TreeTransform.h     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 586 const CXXCatchStmt *C = S.getHandler(I);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 51 bool TraverseCXXCatchStmt(CXXCatchStmt *S) {
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 283 void ExprEngine::VisitCXXCatchStmt(const CXXCatchStmt *CS,
ExprEngine.cpp 733 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst);
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 325 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 890 VISIT(CXXCatchStmt);
927 IGNORE_STMT(CXXCatchStmt);
    [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [all...]
CIndex.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]

Completed in 997 milliseconds