Searched refs:LabelLoc (Results 1 – 6 of 6) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1213 SourceLocation LabelLoc; variable 1216 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1226 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 1227 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 1230 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
D | Expr.h | 3356 SourceLocation AmpAmpLoc, LabelLoc; variable 3363 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr() 3371 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 3372 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 3375 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 923 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 934 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 943 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2540 SourceLocation LabelLoc, in ActOnGotoStmt() argument 2544 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
D | TreeTransform.h | 1204 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1206 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2038 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2039 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3143 SourceLocation LabelLoc,
|