Searched refs:GotoLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1035 SourceLocation GotoLoc; variable 1039 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1047 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1048 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1053 return SourceRange(GotoLoc, LabelLoc); in getSourceRange() 1067 SourceLocation GotoLoc; variable 1073 : Stmt(IndirectGotoStmtClass), GotoLoc(gotoLoc), StarLoc(starLoc), in IndirectGotoStmt() 1080 void setGotoLoc(SourceLocation L) { GotoLoc = L; } in setGotoLoc() 1081 SourceLocation getGotoLoc() const { return GotoLoc; } in getGotoLoc() 1097 return SourceRange(GotoLoc, Target->getLocEnd()); in getSourceRange()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1467 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local 1473 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement() 1484 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.take()); in ParseGotoStatement()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1433 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument 1438 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt() 1442 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument 1460 return Owned(new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E)); in ActOnIndirectGotoStmt()
|
D | TreeTransform.h | 1074 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1076 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 1083 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument 1086 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2041 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, 2044 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc, 2048 StmtResult ActOnBreakStmt(SourceLocation GotoLoc, Scope *CurScope);
|