HomeSort by relevance Sort by last modified time
    Searched defs:DG (Results 1 - 12 of 12) sorted by null

  /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/Sema/
SemaDeclObjC.cpp     [all...]
SemaStmt.cpp 66 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
68 DeclGroupRef DG = dg.get();
71 if (DG.isNull()) return StmtError();
73 return new (Context) DeclStmt(DG, StartLoc, EndLoc);
76 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
77 DeclGroupRef DG = dg.get();
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 444 DeclGroupRef DG;
448 DeclStmt(DeclGroupRef dg, SourceLocation startLoc,
449 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
458 return DG.isSingleDecl();
461 const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
462 Decl *getSingleDecl() { return DG.getSingleDecl(); }
464 const DeclGroupRef getDeclGroup() const { return DG; }
465 DeclGroupRef getDeclGroup() { return DG; }
466 void setDeclGroup(DeclGroupRef DGR) { DG = DGR;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 325 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG);
343 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG);
768 SmallVector<Decl *, 8> DG;
774 DG.push_back(*DI);
780 RewriteForwardClassDecl(DG);
793 SmallVector<Decl *, 8> DG
    [all...]
RewriteObjC.cpp 271 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG);
289 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG);
690 SmallVector<Decl *, 8> DG;
696 DG.push_back(*DI);
702 RewriteForwardClassDecl(DG);
709 SmallVector<Decl *, 8> DG;
715 DG.push_back(*DI);
721 RewriteForwardProtocolDecl(DG);
    [all...]

Completed in 267 milliseconds