Home | History | Annotate | Download | only in AST

Lines Matching refs:GotoLoc

1208   SourceLocation GotoLoc;
1212 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1220 SourceLocation getGotoLoc() const { return GotoLoc; }
1221 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1225 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }
1239 SourceLocation GotoLoc;
1243 IndirectGotoStmt(SourceLocation gotoLoc, SourceLocation starLoc,
1245 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc),
1252 void setGotoLoc(SourceLocation L) { GotoLoc = L; }
1253 SourceLocation getGotoLoc() const { return GotoLoc; }
1268 SourceLocation getLocStart() const LLVM_READONLY { return GotoLoc; }