Searched refs:LabelLoc (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | COFFMasmParser.cpp | 485 SMLoc LabelLoc = getTok().getLoc(); in parseDirectiveEndProc() local 487 return Error(LabelLoc, "expected identifier for procedure end"); in parseDirectiveEndProc() 492 return Error(LabelLoc, "endp does not match current procedure '" + in parseDirectiveEndProc()
|
| H A D | AsmParser.cpp | 6195 SMLoc LabelLoc = LabelTok.getLoc(); in parseAsHLASMLabel() local 6199 return Error(LabelLoc, "The HLASM Label has to be an Identifier"); in parseAsHLASMLabel() 6213 return Error(LabelLoc, in parseAsHLASMLabel() 6220 Out.emitLabel(Sym, LabelLoc); in parseAsHLASMLabel() 6226 LabelLoc); in parseAsHLASMLabel()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 1117 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 1128 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 1137 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Stmt.h | 2974 SourceLocation LabelLoc; 2978 : Stmt(GotoStmtClass), Label(label), LabelLoc(LL) { 2990 SourceLocation getLabelLoc() const { return LabelLoc; } 2991 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
|
| H A D | Expr.h | 4479 SourceLocation AmpAmpLoc, LabelLoc; variable 4485 LabelLoc(LLoc), Label(L) { in AddrLabelExpr() 4495 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 4496 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 4499 SourceLocation getEndLoc() const LLVM_READONLY { return LabelLoc; } in getEndLoc()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 3234 SourceLocation LabelLoc, in ActOnGotoStmt() argument 3244 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
| H A D | TreeTransform.h | 1475 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1477 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 3119 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 3120 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 11018 StmtResult ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc,
|