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

/external/clang/lib/Parse/
H A DParseStmt.cpp694 SourceLocation LabelLoc = ConsumeToken(); local
695 Diag(LabelLoc, diag::ext_gnu_local_label);
706 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
716 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
/external/clang/include/clang/AST/
H A DStmt.h1187 SourceLocation LabelLoc; member in class:clang::GotoStmt
1190 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1200 SourceLocation getLabelLoc() const { return LabelLoc; }
1201 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
1204 return SourceRange(GotoLoc, LabelLoc);
H A DExpr.h3171 SourceLocation AmpAmpLoc, LabelLoc; member in class:clang::StringLiteral::OffsetOfExpr::AddrLabelExpr
3178 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {}
3186 SourceLocation getLabelLoc() const { return LabelLoc; }
3187 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
3190 return SourceRange(AmpAmpLoc, LabelLoc);
/external/clang/lib/Sema/
H A DSemaStmt.cpp2057 SourceLocation LabelLoc,
2061 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc));
2056 ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl) argument
H A DTreeTransform.h1127 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, argument
1129 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label);
1698 SourceLocation LabelLoc, LabelDecl *Label) {
1699 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label);
1697 RebuildAddrLabelExpr(SourceLocation AmpAmpLoc, SourceLocation LabelLoc, LabelDecl *Label) argument

Completed in 107 milliseconds