Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3724 SourceLocation LeaveLoc;
3728 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {}
3733 SourceLocation getLeaveLoc() const { return LeaveLoc; }
3734 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; }
3736 SourceLocation getBeginLoc() const LLVM_READONLY { return LeaveLoc; }
3737 SourceLocation getEndLoc() const LLVM_READONLY { return LeaveLoc; }
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp717 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. in ParseSEHLeaveStatement() local
718 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()