Searched defs:LabelLoc (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/Parse/
H A DParseStmt.cpp750 SourceLocation LabelLoc = ConsumeToken(); local
751 Diag(LabelLoc, diag::ext_gnu_local_label);
762 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
772 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
/external/clang/include/clang/AST/
H A DStmt.h1182 SourceLocation LabelLoc; member in class:clang::GotoStmt
1185 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1195 SourceLocation getLabelLoc() const { return LabelLoc; }
1196 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
1199 return SourceRange(GotoLoc, LabelLoc);
H A DExpr.h3159 SourceLocation AmpAmpLoc, LabelLoc; member in class:clang::StringLiteral::OffsetOfExpr::AddrLabelExpr
3166 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {}
3174 SourceLocation getLabelLoc() const { return LabelLoc; }
3175 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
3178 return SourceRange(AmpAmpLoc, LabelLoc);
/external/clang/lib/Sema/
H A DSemaStmt.cpp1639 SourceLocation LabelLoc,
1643 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc));
1638 ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl) argument
H A DTreeTransform.h1126 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, argument
1128 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label);
1704 SourceLocation LabelLoc, LabelDecl *Label) {
1705 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label);
1703 RebuildAddrLabelExpr(SourceLocation AmpAmpLoc, SourceLocation LabelLoc, LabelDecl *Label) argument

Completed in 433 milliseconds