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

  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 205 DeclGroupRef DG = S->getDeclGroup();
206 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D)
    [all...]
  /external/clang/lib/Sema/
SemaDeclObjC.cpp     [all...]
SemaStmt.cpp 54 StmtResult Sema::ActOnDeclStmt(DeclGroupPtrTy dg, SourceLocation StartLoc,
56 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
59 if (DG.isNull()) return StmtError();
61 return Owned(new (Context) DeclStmt(DG, StartLoc, EndLoc));
64 void Sema::ActOnForEachDeclStmt(DeclGroupPtrTy dg) {
65 DeclGroupRef DG = dg.getAsVal<DeclGroupRef>();
68 if (DG.isNull() || !DG.isSingleDecl()) return
    [all...]
SemaCodeComplete.cpp     [all...]
TreeTransform.h     [all...]
  /external/clang/include/clang/AST/
Stmt.h 358 DeclGroupRef DG;
362 DeclStmt(DeclGroupRef dg, SourceLocation startLoc,
363 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg),
372 return DG.isSingleDecl();
375 const Decl *getSingleDecl() const { return DG.getSingleDecl(); }
376 Decl *getSingleDecl() { return DG.getSingleDecl(); }
378 const DeclGroupRef getDeclGroup() const { return DG; }
379 DeclGroupRef getDeclGroup() { return DG; }
380 void setDeclGroup(DeclGroupRef DGR) { DG = DGR;
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp 250 void RewriteForwardClassDecl(const llvm::SmallVector<Decl*, 8> &DG);
740 SmallVector<Decl *, 8> DG;
745 DG.push_back(D);
749 RewriteForwardClassDecl(DG);
    [all...]

Completed in 435 milliseconds