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.h275 SourceLocation GotoLoc;
2883 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }
2884 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
2921 void setGotoLoc(SourceLocation L) { GotoStmtBits.GotoLoc = L; }
2922 SourceLocation getGotoLoc() const { return GotoStmtBits.GotoLoc; }
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2382 SourceLocation GotoLoc = ConsumeToken(); // eat the 'goto'. in ParseGotoStatement() local
2388 Res = Actions.ActOnGotoStmt(GotoLoc, Tok.getLocation(), LD); in ParseGotoStatement()
2399 Res = Actions.ActOnIndirectGotoStmt(GotoLoc, StarLoc, R.get()); in ParseGotoStatement()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp3126 StmtResult Sema::ActOnGotoStmt(SourceLocation GotoLoc, in ActOnGotoStmt() argument
3137 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
3141 Sema::ActOnIndirectGotoStmt(SourceLocation GotoLoc, SourceLocation StarLoc, in ActOnIndirectGotoStmt() argument
3169 return new (Context) IndirectGotoStmt(GotoLoc, StarLoc, E); in ActOnIndirectGotoStmt()
H A DTreeTransform.h1481 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1483 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
1490 StmtResult RebuildIndirectGotoStmt(SourceLocation GotoLoc, in RebuildIndirectGotoStmt() argument
1493 return getSema().ActOnIndirectGotoStmt(GotoLoc, StarLoc, Target); in RebuildIndirectGotoStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10803 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
10805 StmtResult ActOnIndirectGotoStmt(SourceLocation GotoLoc,