Searched refs:LabelLoc (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 349 SMLoc LabelLoc = getTok().getLoc(); in ParseDirectiveEndProc() local 351 return Error(LabelLoc, "expected identifier for procedure end"); in ParseDirectiveEndProc() 356 return Error(LabelLoc, "endp does not match current procedure '" + in ParseDirectiveEndProc()
|
| H A D | AsmParser.cpp | 6233 SMLoc LabelLoc = LabelTok.getLoc(); in parseAsHLASMLabel() local 6237 return Error(LabelLoc, "The HLASM Label has to be an Identifier"); in parseAsHLASMLabel() 6251 return Error(LabelLoc, in parseAsHLASMLabel() 6262 Out.emitLabel(Sym, LabelLoc); in parseAsHLASMLabel() 6268 LabelLoc); in parseAsHLASMLabel()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Stmt.h | 2639 SourceLocation LabelLoc; variable 2643 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { in GotoStmt() 2655 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 2656 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
|
| H A D | Expr.h | 4305 SourceLocation AmpAmpLoc, LabelLoc; variable 4311 LabelLoc(LLoc), Label(L) { in AddrLabelExpr() 4321 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 4322 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 4325 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1114 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 1125 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 1134 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 3274 SourceLocation LabelLoc, in ActOnGotoStmt() argument 3278 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1394 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1396 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2867 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2868 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 5020 SourceLocation LabelLoc,
|