Home
last modified time | relevance | path

Searched refs:LabelLoc (Results 1 – 7 of 7) sorted by relevance

/external/clang/include/clang/AST/
DStmt.h1184 SourceLocation LabelLoc; variable
1187 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt()
1197 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
1198 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
1201 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
DExpr.h3322 SourceLocation AmpAmpLoc, LabelLoc; variable
3329 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr()
3337 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc()
3338 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc()
3341 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
/external/clang/lib/Parse/
DParseStmt.cpp799 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local
800 Diag(LabelLoc, diag::ext_gnu_local_label); in ParseCompoundStatementBody()
811 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody()
821 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
/external/clang/lib/Sema/
DSemaStmt.cpp2260 SourceLocation LabelLoc, in ActOnGotoStmt() argument
2264 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt()
DTreeTransform.h1154 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument
1156 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt()
1787 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument
1788 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
/external/llvm/lib/AsmParser/
DLLParser.cpp2386 LocTy FnLoc, LabelLoc; in ParseValID() local
/external/clang/include/clang/Sema/
DSema.h2878 SourceLocation LabelLoc,