Searched refs:CatchLoc (Results 1 – 12 of 12) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtCXX.h | 30 SourceLocation CatchLoc; variable 38 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl), in CXXCatchStmt() 44 SourceLocation getLocStart() const LLVM_READONLY { return CatchLoc; } in getLocStart() 49 SourceLocation getCatchLoc() const { return CatchLoc; } in getCatchLoc()
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtCXX.h | 29 SourceLocation CatchLoc; variable 37 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl), in CXXCatchStmt() 43 SourceLocation getBeginLoc() const LLVM_READONLY { return CatchLoc; } in getBeginLoc() 48 SourceLocation getCatchLoc() const { return CatchLoc; } in getCatchLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 2137 SourceLocation CatchLoc = ConsumeToken(); in ParseCXXCatchBlock() local 2180 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 2447 SourceLocation CatchLoc = ConsumeToken(); in ParseCXXCatchBlock() local 2491 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 3523 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument 3527 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
|
D | TreeTransform.h | 1874 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, in RebuildCXXCatchStmt() argument 1877 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 4022 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument 4026 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
|
D | TreeTransform.h | 2223 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, in RebuildCXXCatchStmt() argument 2226 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1636 S->CatchLoc = readSourceLocation(); in VisitCXXCatchStmt()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1191 S->CatchLoc = ReadSourceLocation(Record, Idx); in VisitCXXCatchStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3551 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc,
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4691 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc,
|