Home | History | Annotate | Download | only in AST

Lines Matching refs:GotoLoc

1204   SourceLocation GotoLoc;
1208 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1216 SourceLocation getGotoLoc() const { return GotoLoc; }
1217 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1221 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }
1237 SourceLocation GotoLoc;
1241 IndirectGotoStmt(SourceLocation gotoLoc, SourceLocation starLoc,
1243 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1250 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1251 SourceLocation getGotoLoc() const { return GotoLoc; }
1266 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }