Home
last modified time | relevance | path

Searched refs:GotoLoc (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h277 SourceLocation GotoLoc;
2988 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }
2989 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
3026 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
3027 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2264 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local
2270 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement()
2281 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp3233 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument
3244 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
3248 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
3277 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
H A DTreeTransform.h1475 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1477 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
1484 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument
1487 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11018 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
11020 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,