/external/clang/tools/libclang/ |
IndexBody.cpp | 140 DeclGroupRef DG = S->getDeclGroup(); 141 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) {
|
IndexDecl.cpp | 346 void IndexingContext::indexDeclGroupRef(DeclGroupRef DG) { 347 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) 353 DeclGroupRef DG = TUDeclsInObjCContainer.front(); 355 indexDeclGroupRef(DG);
|
/external/clang/lib/Parse/ |
ParseStmt.cpp | [all...] |
ParseObjc.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTWriterStmt.cpp | 216 DeclGroupRef DG = S->getDeclGroup(); 217 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D) [all...] |
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaStmt.cpp | 70 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc, 72 DeclGroupRef DG = dg.get(); 75 if (DG.isNull()) return StmtError(); 77 return new (Context) DeclStmt(DG, StartLoc, EndLoc); 80 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) { 81 DeclGroupRef DG = dg.get(); 85 if (DG.isNull() || !DG.isSingleDecl() [all...] |
TreeTransform.h | [all...] |
/external/clang/include/clang/AST/ |
Stmt.h | 445 DeclGroupRef DG; 449 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, 450 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), 459 return DG.isSingleDecl(); 462 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } 463 Decl *getSingleDecl() { return DG.getSingleDecl(); } 465 const DeclGroupRef getDeclGroup() const { return DG; } 466 DeclGroupRef getDeclGroup() { return DG; } 467 void setDeclGroup(DeclGroupRef DGR) { DG = DGR; [all...] |
/external/clang/lib/Frontend/Rewrite/ |
RewriteModernObjC.cpp | 316 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 334 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 756 SmallVector<Decl *, 8> DG; 762 DG.push_back(*DI); 768 RewriteForwardClassDecl(DG); 781 SmallVector<Decl *, 8> DG; 787 DG.push_back(*DI); 793 RewriteForwardProtocolDecl(DG); [all...] |
RewriteObjC.cpp | 262 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 280 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 681 SmallVector<Decl *, 8> DG; 687 DG.push_back(*DI); 693 RewriteForwardClassDecl(DG); 700 SmallVector<Decl *, 8> DG; 706 DG.push_back(*DI); 712 RewriteForwardProtocolDecl(DG); [all...] |