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

1 2

  /external/clang/include/clang/AST/
StmtCXX.h 27 /// CXXCatchStmt - This represents a C++ catch block.
29 class CXXCatchStmt : public Stmt {
37 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock)
41 CXXCatchStmt(EmptyShell Empty)
104 CXXCatchStmt *getHandler(unsigned i) {
105 return cast<CXXCatchStmt>(getStmts()[i + 1]);
107 const CXXCatchStmt *getHandler(unsigned i) const {
108 return cast<CXXCatchStmt>(getStmts()[i + 1]);
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/AST/
StmtCXX.cpp 20 QualType CXXCatchStmt::getCaughtType() const {
StmtPrinter.cpp 70 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
513 void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) {
523 void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) {
    [all...]
ASTDumper.cpp 488 void VisitCXXCatchStmt(const CXXCatchStmt *Node);
    [all...]
ASTImporter.cpp 201 Stmt *VisitCXXCatchStmt(CXXCatchStmt *S);
    [all...]
StmtProfile.cpp 186 void StmtProfiler::VisitCXXCatchStmt(const CXXCatchStmt *S) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 32 class CXXCatchStmt;
429 void VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred,
  /external/clang/lib/CodeGen/
CodeGenPGO.cpp 86 CXXCatchStmt,
179 return PGOHash::CXXCatchStmt;
516 void VisitCXXCatchStmt(const CXXCatchStmt *S) {
CGCXXABI.h 233 virtual void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) = 0;
CGException.cpp 547 const CXXCatchStmt *C = S.getHandler(I);
    [all...]
CoverageMappingGen.cpp 833 void VisitCXXCatchStmt(const CXXCatchStmt *S) {
    [all...]
ItaniumCXXABI.cpp 173 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override;
    [all...]
MicrosoftCXXABI.cpp 122 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override;
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]
JumpDiagnostics.cpp 333 CXXCatchStmt *CS = TS->getHandler(I);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 49 bool TraverseCXXCatchStmt(CXXCatchStmt *S) {
  /external/clang/lib/Analysis/
CFG.cpp 441 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 538 void ExprEngine::VisitCXXCatchStmt(const CXXCatchStmt *CS,
ExprEngine.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 871 VISIT(CXXCatchStmt);
908 IGNORE_STMT(CXXCatchStmt);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
ASTWriterStmt.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]

Completed in 235 milliseconds

1 2