Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1205 SourceLocation LabelLoc; variable
1208 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt()
1218 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
1219 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
1222 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
DExpr.h3406 SourceLocation AmpAmpLoc, LabelLoc; variable
3413 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr()
3421 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
3422 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
3425 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp932 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
943 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
952 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/external/clang/lib/Sema/
DSemaStmt.cpp2586 SourceLocation LabelLoc, in ActOnGotoStmt() argument
2590 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
DTreeTransform.h1225 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1227 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
2229 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
2230 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/external/clang/include/clang/Sema/
DSema.h3375 SourceLocation LabelLoc,