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 137 DeclGroupRef DG = S->getDeclGroup();
138 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) {
IndexDecl.cpp 344 void IndexingContext::indexDeclGroupRef(DeclGroupRef DG) {
345 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
351 DeclGroupRef DG = TUDeclsInObjCContainer.front();
353 indexDeclGroupRef(DG);
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
ParseObjc.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaStmt.cpp 62 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
64 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
67 if (DG.isNull()) return StmtError();
69 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
72 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
73 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
76 if (DG.isNull() || !DG.isSingleDecl()) return
    [all...]
SemaCodeComplete.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 213 DeclGroupRef DG = S->getDeclGroup();
214 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 449 DeclGroupRef DG;
453 DeclStmt(DeclGroupRef dg, SourceLocation startLoc,
454 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
463 return DG.isSingleDecl();
466 const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
467 Decl *getSingleDecl() { return DG.getSingleDecl(); }
469 const DeclGroupRef getDeclGroup() const { return DG; }
470 DeclGroupRef getDeclGroup() { return DG; }
471 void setDeclGroup(DeclGroupRef DGR) { DG = DGR;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteObjC.cpp 270 void RewriteForwardClassDecl(const SmallVector<Decl *, 8> &DG);
288 void RewriteForwardProtocolDecl(const SmallVector<Decl *, 8> &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 SmallVector<Decl *, 8> &DG);
328 void RewriteForwardProtocolDecl(const SmallVector<Decl *, 8> &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...]

Completed in 255 milliseconds