/external/clang/include/clang/Sema/ |
H A D | PrettyDeclStackTrace.h | 33 Decl *TheDecl; member in class:clang::PrettyDeclStackTraceEntry 40 : S(S), TheDecl(D), Loc(Loc), Message(Msg) {}
|
H A D | ScopeInfo.h | 599 BlockDecl *TheDecl; member in class:clang::sema::final 610 : CapturingScopeInfo(Diag, ImpCap_Block), TheDecl(Block),
|
/external/clang/lib/Parse/ |
H A D | Parser.cpp | 891 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, local 893 DS.complete(TheDecl); 895 Decl* decls[] = {AnonRecord, TheDecl}; 898 return Actions.ConvertDeclToDeclGroup(TheDecl); 936 Decl *TheDecl = ParseLinkage(DS, Declarator::FileContext); local 937 return Actions.ConvertDeclToDeclGroup(TheDecl);
|
H A D | ParseDeclCXX.cpp | 2421 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec( local 2423 DS.complete(TheDecl); 2425 Decl* decls[] = {AnonRecord, TheDecl}; 2428 return Actions.ConvertDeclToDeclGroup(TheDecl);
|
H A D | ParseDecl.cpp | 1565 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, local 1567 DS.complete(TheDecl); 1569 Decl* decls[] = {AnonRecord, TheDecl}; 1572 return Actions.ConvertDeclToDeclGroup(TheDecl); 1790 Decl *TheDecl = local 1792 return Actions.ConvertDeclToDeclGroup(TheDecl); 3603 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS_none, local 3606 DS.complete(TheDecl);
|
/external/clang/include/clang/AST/ |
H A D | DeclBase.h | 1052 const Decl *TheDecl; member in class:clang::PrettyStackTraceDecl 1059 : TheDecl(theDecl), Loc(L), SM(sm), Message(Msg) {}
|
H A D | ExprCXX.h | 665 MSPropertyDecl *TheDecl; member in class:clang::MSPropertyRefExpr 679 BaseExpr(baseExpr), TheDecl(decl), 709 MSPropertyDecl *getPropertyDecl() const { return TheDecl; }
|
H A D | Stmt.h | 791 LabelDecl *TheDecl; member in class:clang::LabelStmt 796 : Stmt(LabelStmtClass), IdentLoc(IL), TheDecl(D), SubStmt(substmt) { 806 LabelDecl *getDecl() const { return TheDecl; } 807 void setDecl(LabelDecl *D) { TheDecl = D; }
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 461 Sema::ActOnLabelStmt(SourceLocation IdentLoc, LabelDecl *TheDecl, argument 464 if (TheDecl->getStmt()) { 465 Diag(IdentLoc, diag::err_redefinition_of_label) << TheDecl->getDeclName(); 466 Diag(TheDecl->getLocation(), diag::note_previous_definition); 471 LabelStmt *LS = new (Context) LabelStmt(IdentLoc, TheDecl, SubStmt); 472 TheDecl->setStmt(LS); 473 if (!TheDecl->isGnuLocal()) { 474 TheDecl->setLocStart(IdentLoc); 475 if (!TheDecl->isMSAsmLabel()) { 478 TheDecl 2616 ActOnGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, LabelDecl *TheDecl) argument [all...] |
H A D | SemaExpr.cpp | 3061 currentDecl = BSI->TheDecl; 3977 DC = BSI->TheDecl; 11579 LabelDecl *TheDecl) { 11580 TheDecl->markUsed(Context); 11582 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl, 12008 CurBlock->TheDecl->setSignatureAsWritten(Sig); 12016 CurBlock->TheDecl->setIsVariadic(isVariadic); 12024 CurBlock->TheDecl->setBlockMissingReturnType(false); 12046 CurBlock->TheDecl, ParamInfo.getLocStart(), I); 12053 CurBlock->TheDecl 11578 ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc, LabelDecl *TheDecl) argument [all...] |