Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmtCXX.h92 SourceLocation getBeginLoc() const LLVM_READONLY { return getTryLoc(); } in getBeginLoc()
94 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc() function
DStmt.h3401 SourceLocation getBeginLoc() const LLVM_READONLY { return getTryLoc(); } in getBeginLoc()
3403 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc() function
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTWriterStmt.cpp1538 Record.AddSourceLocation(S->getTryLoc()); in VisitCXXTryStmt()
2169 Record.AddSourceLocation(S->getTryLoc()); in VisitSEHTryStmt()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DTreeTransform.h8166 return getDerived().RebuildCXXTryStmt(S->getTryLoc(), TryBlock.get(), in TransformCXXTryStmt()
8385 return getDerived().RebuildSEHTryStmt(S->getIsCXXTry(), S->getTryLoc(), in TransformSEHTryStmt()
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DASTImporter.cpp6501 ExpectedSLoc ToTryLocOrErr = import(S->getTryLoc()); in VisitCXXTryStmt()