Searched refs:LabelLoc (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 356 SMLoc LabelLoc = getTok().getLoc(); in ParseDirectiveEndProc() local 358 return Error(LabelLoc, "expected identifier for procedure end"); in ParseDirectiveEndProc() 363 return Error(LabelLoc, "endp does not match current procedure '" + in ParseDirectiveEndProc()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1059 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 1070 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 1079 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 2578 SourceLocation LabelLoc; variable 2582 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { in GotoStmt() 2594 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 2595 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
|
| H A D | Expr.h | 4227 SourceLocation AmpAmpLoc, LabelLoc; variable 4233 LabelLoc(LLoc), Label(L) { in AddrLabelExpr() 4243 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 4244 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 4247 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 3235 SourceLocation LabelLoc, in ActOnGotoStmt() argument 3239 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1389 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1391 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2784 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2785 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| H A D | Sema.h | 4727 SourceLocation LabelLoc,
|