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

/external/clang/lib/Parse/
H A DParseStmt.cpp951 SourceLocation LabelLoc = ConsumeToken(); local
962 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc));
971 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation());
/external/clang/include/clang/AST/
H A DStmt.h1227 SourceLocation LabelLoc; member in class:clang::GotoStmt
1230 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {}
1240 SourceLocation getLabelLoc() const { return LabelLoc; }
1241 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
1244 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; }
H A DExpr.h3340 SourceLocation AmpAmpLoc, LabelLoc; member in class:clang::StringLiteral::final::CallExpr::AddrLabelExpr
3347 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {}
3355 SourceLocation getLabelLoc() const { return LabelLoc; }
3356 void setLabelLoc(SourceLocation L) { LabelLoc = L; }
3359 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; }
/external/clang/lib/Sema/
H A DSemaStmt.cpp2617 SourceLocation LabelLoc,
2621 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc);
2616 ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl) argument
H A DTreeTransform.h1237 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, argument
1239 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label);
2302 SourceLocation LabelLoc, LabelDecl *Label) {
2303 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label);
2301 RebuildAddrLabelExpr(SourceLocation AmpAmpLoc, SourceLocation LabelLoc, LabelDecl *Label) argument

Completed in 181 milliseconds