Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DStmt.h1187 SourceLocation LabelLoc; variable
1190 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt()
1200 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
1201 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
1204 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
DExpr.h3328 SourceLocation AmpAmpLoc, LabelLoc; variable
3335 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr()
3343 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
3344 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
3347 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
DParseStmt.cpp865 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
876 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
886 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaStmt.cpp2300 SourceLocation LabelLoc, in ActOnGotoStmt() argument
2304 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt()
DTreeTransform.h1170 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1172 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
1818 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
1819 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DSema.h2950 SourceLocation LabelLoc,