Home
last modified time | relevance | path

Searched refs:LeaveLoc (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h3494 SourceLocation LeaveLoc; variable
3498 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {} in SEHLeaveStmt()
3503 SourceLocation getLeaveLoc() const { return LeaveLoc; } in getLeaveLoc()
3504 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; } in setLeaveLoc()
3506 SourceLocation getBeginLoc() const LLVM_READONLY { return LeaveLoc; } in getBeginLoc()
3507 SourceLocation getEndLoc() const LLVM_READONLY { return LeaveLoc; } in getEndLoc()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmt.cpp662 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. in ParseSEHLeaveStatement() local
663 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()