Home
last modified time | relevance | path

Searched refs:getTryLoc (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h93 SourceLocation getBeginLoc() const LLVM_READONLY { return getTryLoc(); } in getBeginLoc()
95 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc() function
H A DStmt.h3692 SourceLocation getBeginLoc() const LLVM_READONLY { return getTryLoc(); }
3694 SourceLocation getTryLoc() const { return TryLoc; }
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp1645 Record.AddSourceLocation(S->getTryLoc()); in VisitCXXTryStmt()
2365 Record.AddSourceLocation(S->getTryLoc()); in VisitSEHTryStmt()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8835 return getDerived().RebuildCXXTryStmt(S->getTryLoc(), TryBlock.get(), in TransformCXXTryStmt()
9065 return getDerived().RebuildSEHTryStmt(S->getIsCXXTry(), S->getTryLoc(), in TransformSEHTryStmt()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp7099 ExpectedSLoc ToTryLocOrErr = import(S->getTryLoc()); in VisitCXXTryStmt()