Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1213 SourceLocation LabelLoc; variable
1216 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt()
1226 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
1227 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
1230 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
DExpr.h3356 SourceLocation AmpAmpLoc, LabelLoc; variable
3363 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr()
3371 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
3372 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
3375 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp923 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
934 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
943 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/external/clang/lib/Sema/
DSemaStmt.cpp2540 SourceLocation LabelLoc, in ActOnGotoStmt() argument
2544 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
DTreeTransform.h1204 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1206 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
2038 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
2039 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/external/clang/include/clang/Sema/
DSema.h3143 SourceLocation LabelLoc,