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

  /external/clang/tools/libclang/
IndexDecl.cpp 338 void IndexingContext::indexDeclGroupRef(DeclGroupRef DG) {
339 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I)
345 DeclGroupRef DG = TUDeclsInObjCContainer.front();
347 indexDeclGroupRef(DG);
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
ParseObjc.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaStmt.cpp 57 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
59 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
62 if (DG.isNull()) return StmtError();
64 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
67 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
68 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
71 if (DG.isNull() || !DG.isSingleDecl()) return
    [all...]
SemaCodeComplete.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 215 DeclGroupRef DG = S->getDeclGroup();
216 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D)
    [all...]
  /external/clang/include/clang/AST/
Stmt.h 447 DeclGroupRef DG;
451 DeclStmt(DeclGroupRef dg, SourceLocation startLoc,
452 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
461 return DG.isSingleDecl();
464 const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
465 Decl *getSingleDecl() { return DG.getSingleDecl(); }
467 const DeclGroupRef getDeclGroup() const { return DG; }
468 DeclGroupRef getDeclGroup() { return DG; }
469 void setDeclGroup(DeclGroupRef DGR) { DG = DGR;
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 282 void RewriteForwardClassDecl(const llvm::SmallVector<Decl*, 8> &DG);
300 void RewriteForwardProtocolDecl(const llvm::SmallVector<Decl*, 8> &DG);
703 SmallVector<Decl *, 8> DG;
709 DG.push_back(*DI);
715 RewriteForwardClassDecl(DG);
728 SmallVector<Decl *, 8> DG;
734 DG.push_back(*DI);
740 RewriteForwardProtocolDecl(DG);
    [all...]
RewriteObjC.cpp 268 void RewriteForwardClassDecl(const llvm::SmallVector<Decl*, 8> &DG);
286 void RewriteForwardProtocolDecl(const llvm::SmallVector<Decl*, 8> &DG);
682 SmallVector<Decl *, 8> DG;
688 DG.push_back(*DI);
694 RewriteForwardClassDecl(DG);
701 SmallVector<Decl *, 8> DG;
707 DG.push_back(*DI);
713 RewriteForwardProtocolDecl(DG);
    [all...]

Completed in 415 milliseconds