Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmt.h1209 SourceLocation LabelLoc; variable
1212 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt()
1222 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
1223 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
1226 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
DExpr.h3352 SourceLocation AmpAmpLoc, LabelLoc; variable
3359 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr()
3367 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
3368 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
3371 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp908 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
919 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
928 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/external/clang/lib/Sema/
DSemaStmt.cpp2364 SourceLocation LabelLoc, in ActOnGotoStmt() argument
2368 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
DTreeTransform.h1177 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1179 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
1981 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
1982 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/external/clang/include/clang/Sema/
DSema.h3076 SourceLocation LabelLoc,