Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h3506 SourceLocation LeaveLoc; variable
3510 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {} in SEHLeaveStmt()
3515 SourceLocation getLeaveLoc() const { return LeaveLoc; } in getLeaveLoc()
3516 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; } in setLeaveLoc()
3518 SourceLocation getBeginLoc() const LLVM_READONLY { return LeaveLoc; } in getBeginLoc()
3519 SourceLocation getEndLoc() const LLVM_READONLY { return LeaveLoc; } in getEndLoc()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp677 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. in ParseSEHLeaveStatement() local
678 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()