/external/clang/tools/libclang/ |
IndexBody.cpp | 141 DeclGroupRef DG = S->getDeclGroup(); 142 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/Sema/ |
SemaDeclObjC.cpp | [all...] |
SemaCodeComplete.cpp | [all...] |
SemaStmt.cpp | 71 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc, 73 DeclGroupRef DG = dg.get(); 76 if (DG.isNull()) return StmtError(); 78 return new (Context) DeclStmt(DG, StartLoc, EndLoc); 81 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) { 82 DeclGroupRef DG = dg.get(); 86 if (DG.isNull() || !DG.isSingleDecl() [all...] |
TreeTransform.h | [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/include/clang/AST/ |
Stmt.h | 432 DeclGroupRef DG; 436 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, 437 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), 446 return DG.isSingleDecl(); 449 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } 450 Decl *getSingleDecl() { return DG.getSingleDecl(); } 452 const DeclGroupRef getDeclGroup() const { return DG; } 453 DeclGroupRef getDeclGroup() { return DG; } 454 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...] |