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

/external/clang/include/clang/AST/
H A DStmt.h1942 SourceLocation LeaveLoc; member in class:clang::SEHLeaveStmt
1945 : Stmt(SEHLeaveStmtClass), LeaveLoc(LL) {}
1950 SourceLocation getLeaveLoc() const { return LeaveLoc; }
1951 void setLeaveLoc(SourceLocation L) { LeaveLoc = L; }
1953 SourceLocation getLocStart() const LLVM_READONLY { return LeaveLoc; }
1954 SourceLocation getLocEnd() const LLVM_READONLY { return LeaveLoc; }
/external/clang/lib/Parse/
H A DParseStmt.cpp521 SourceLocation LeaveLoc = ConsumeToken(); // eat the '__leave'. local
522 return Actions.ActOnSEHLeaveStmt(LeaveLoc, getCurScope());

Completed in 1043 milliseconds