Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1953 SourceLocation LeaveLoc; variable
1956 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {} in SEHLeaveStmt()
1961 SourceLocation getLeaveLoc() const { return LeaveLoc; } in getLeaveLoc()
1962 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; } in setLeaveLoc()
1964 SourceLocation getLocStart() const LLVM_READONLY { return LeaveLoc; } in getLocStart()
1965 SourceLocation getLocEnd() const LLVM_READONLY { return LeaveLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp536 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. in ParseSEHLeaveStatement() local
537 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope()); in ParseSEHLeaveStatement()