Lines Matching refs:SourceLocation

27   SourceLocation ForLoc;
28 SourceLocation RParenLoc;
31 SourceLocation FCL, SourceLocation RPL);
53 SourceLocation getForLoc() const { return ForLoc; }
54 void setForLoc(SourceLocation Loc) { ForLoc = Loc; }
55 SourceLocation getRParenLoc() const { return RParenLoc; }
56 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
58 SourceLocation getLocStart() const LLVM_READONLY { return ForLoc; }
59 SourceLocation getLocEnd() const LLVM_READONLY {
78 SourceLocation AtCatchLoc, RParenLoc;
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc,
102 SourceLocation getAtCatchLoc() const { return AtCatchLoc; }
103 void setAtCatchLoc(SourceLocation Loc) { AtCatchLoc = Loc; }
104 SourceLocation getRParenLoc() const { return RParenLoc; }
105 void setRParenLoc(SourceLocation Loc) { RParenLoc = Loc; }
107 SourceLocation getLocStart() const LLVM_READONLY { return AtCatchLoc; }
108 SourceLocation getLocEnd() const LLVM_READONLY { return Body->getLocEnd(); }
121 SourceLocation AtFinallyLoc;
125 ObjCAtFinallyStmt(SourceLocation atFinallyLoc, Stmt *atFinallyStmt)
136 SourceLocation getLocStart() const LLVM_READONLY { return AtFinallyLoc; }
137 SourceLocation getLocEnd() const LLVM_READONLY {
141 SourceLocation getAtFinallyLoc() const { return AtFinallyLoc; }
142 void setAtFinallyLoc(SourceLocation Loc) { AtFinallyLoc = Loc; }
157 SourceLocation AtTryLoc;
175 ObjCAtTryStmt(SourceLocation atTryLoc, Stmt *atTryStmt,
186 SourceLocation atTryLoc, Stmt *atTryStmt,
193 SourceLocation getAtTryLoc() const { return AtTryLoc; }
194 void setAtTryLoc(SourceLocation Loc) { AtTryLoc = Loc; }
241 SourceLocation getLocStart() const LLVM_READONLY { return AtTryLoc; }
242 SourceLocation getLocEnd() const LLVM_READONLY;
264 SourceLocation AtSynchronizedLoc;
269 ObjCAtSynchronizedStmt(SourceLocation atSynchronizedLoc, Stmt *synchExpr,
279 SourceLocation getAtSynchronizedLoc() const { return AtSynchronizedLoc; }
280 void setAtSynchronizedLoc(SourceLocation Loc) { AtSynchronizedLoc = Loc; }
298 SourceLocation getLocStart() const LLVM_READONLY { return AtSynchronizedLoc; }
299 SourceLocation getLocEnd() const LLVM_READONLY {
314 SourceLocation AtThrowLoc;
318 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr)
329 SourceLocation getThrowLoc() const LLVM_READONLY { return AtThrowLoc; }
330 void setThrowLoc(SourceLocation Loc) { AtThrowLoc = Loc; }
332 SourceLocation getLocStart() const LLVM_READONLY { return AtThrowLoc; }
333 SourceLocation getLocEnd() const LLVM_READONLY {
346 SourceLocation AtLoc;
350 ObjCAutoreleasePoolStmt(SourceLocation atLoc, Stmt *subStmt)
360 SourceLocation getLocStart() const LLVM_READONLY { return AtLoc; }
361 SourceLocation getLocEnd() const LLVM_READONLY { return SubStmt->getLocEnd();}
363 SourceLocation getAtLoc() const { return AtLoc; }
364 void setAtLoc(SourceLocation Loc) { AtLoc = Loc; }