Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1973 SourceLocation LeaveLoc; variable
1976 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {} in SEHLeaveStmt()
1981 SourceLocation getLeaveLoc() const { return LeaveLoc; } in getLeaveLoc()
1982 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; } in setLeaveLoc()
1984 SourceLocation getLocStart() const LLVM_READONLY { return LeaveLoc; } in getLocStart()
1985 SourceLocation getLocEnd() const LLVM_READONLY { return LeaveLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp554 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. in ParseSEHLeaveStatement() local
555 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()