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

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

Completed in 111 milliseconds