/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 | 360 void IndexingContext::indexDeclGroupRef(DeclGroupRef DG) { 361 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) 367 DeclGroupRef DG = TUDeclsInObjCContainer.front(); 369 indexDeclGroupRef(DG);
|
/external/clang/lib/Parse/ |
ParseStmt.cpp | [all...] |
ParseObjc.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaDeclObjC.cpp | [all...] |
SemaStmt.cpp | 66 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc, 68 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>(); 71 if (DG.isNull()) return StmtError(); 73 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc)); 76 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) { 77 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>(); 81 if (DG.isNull() || !DG.isSingleDecl() [all...] |
SemaCodeComplete.cpp | [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 | 442 DeclGroupRef DG; 446 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, 447 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), 456 return DG.isSingleDecl(); 459 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } 460 Decl *getSingleDecl() { return DG.getSingleDecl(); } 462 const DeclGroupRef getDeclGroup() const { return DG; } 463 DeclGroupRef getDeclGroup() { return DG; } 464 void setDeclGroup(DeclGroupRef DGR) { DG = DGR; [all...] |
/external/clang/lib/Rewrite/Frontend/ |
RewriteObjC.cpp | 270 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 288 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 683 SmallVector<Decl *, 8> DG; 689 DG.push_back(*DI); 695 RewriteForwardClassDecl(DG); 702 SmallVector<Decl *, 8> DG; 708 DG.push_back(*DI); 714 RewriteForwardProtocolDecl(DG); [all...] |
RewriteModernObjC.cpp | 310 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 328 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 747 SmallVector<Decl *, 8> DG; 753 DG.push_back(*DI); 759 RewriteForwardClassDecl(DG); 772 SmallVector<Decl *, 8> DG; 778 DG.push_back(*DI); 784 RewriteForwardProtocolDecl(DG); [all...] |