Searched refs:LabelLoc (Results 1 – 6 of 6) sorted by relevance
| /minix3/external/bsd/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 1214 SourceLocation LabelLoc; variable 1217 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1227 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 1228 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 1231 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
| H A D | Expr.h | 3364 SourceLocation AmpAmpLoc, LabelLoc; variable 3371 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr() 3379 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 3380 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 3383 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 908 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 919 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 928 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /minix3/external/bsd/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 2392 SourceLocation LabelLoc, in ActOnGotoStmt() argument 2396 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1204 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1206 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2040 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2041 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /minix3/external/bsd/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 3199 SourceLocation LabelLoc,
|