Searched refs:LabelLoc (Results 1 – 6 of 6) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 989 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 1000 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 1009 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | Stmt.h | 2306 SourceLocation LabelLoc; variable 2310 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { in GotoStmt() 2322 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 2323 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
|
| H A D | Expr.h | 3763 SourceLocation AmpAmpLoc, LabelLoc; variable 3770 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr() 3778 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 3779 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 3782 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2850 SourceLocation LabelLoc, in ActOnGotoStmt() argument 2854 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1317 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1319 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2429 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2430 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 3824 SourceLocation LabelLoc,
|