Home
last modified time | relevance | path

Searched refs:LabelLoc (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DCOFFMasmParser.cpp356 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 DParseStmt.cpp1059 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 DStmt.h2578 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 DExpr.h4227 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 DSemaStmt.cpp3235 SourceLocation LabelLoc, in ActOnGotoStmt() argument
3239 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
H A DTreeTransform.h1389 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 DSema.h4727 SourceLocation LabelLoc,