HomeSort by: relevance | last modified time | path
    Searched refs:ExceptionDecl (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtObjC.h 79 VarDecl *ExceptionDecl;
87 : Stmt(ObjCAtCatchStmtClass), ExceptionDecl(catchVarDecl),
98 return ExceptionDecl;
101 return ExceptionDecl;
103 void setCatchParamDecl(VarDecl *D) { ExceptionDecl = D; }
StmtCXX.h 31 VarDecl *ExceptionDecl;
37 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl),
41 : Stmt(CXXCatchStmtClass), ExceptionDecl(nullptr), HandlerBlock(nullptr) {}
49 VarDecl *getExceptionDecl() const { return ExceptionDecl; }
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtCXX.cpp 20 if (ExceptionDecl)
21 return ExceptionDecl->getType();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateInstantiate.cpp 1053 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
1061 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
1300 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl,
1305 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
1308 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
1312 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
1315 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
1317 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
TreeTransform.h 1511 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
1514 ExceptionDecl->getInnerLocStart(),
1515 ExceptionDecl->getLocation(),
1516 ExceptionDecl->getIdentifier());
2295 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
2312 VarDecl *ExceptionDecl,
2314 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
8095 if (VarDecl *ExceptionDecl = S->getExceptionDecl()) {
8097 getDerived().TransformType(ExceptionDecl->getTypeSourceInfo());
8102 ExceptionDecl, T, ExceptionDecl->getInnerLocStart()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 2473 Decl *ExceptionDecl = nullptr;
2486 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
2502 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1638 S->ExceptionDecl = readDeclAs<VarDecl>();

Completed in 44 milliseconds