| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ |
| HD | AnalysisConsumer.cpp | 381 void storeTopLevelDecls(DeclGroupRef DG); 395 bool AnalysisConsumer::HandleTopLevelDecl(DeclGroupRef DG) { in HandleTopLevelDecl() argument 396 storeTopLevelDecls(DG); in HandleTopLevelDecl() 400 void AnalysisConsumer::HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) { in HandleTopLevelDeclInObjCContainer() argument 401 storeTopLevelDecls(DG); in HandleTopLevelDeclInObjCContainer() 404 void AnalysisConsumer::storeTopLevelDecls(DeclGroupRef DG) { in storeTopLevelDecls() argument 405 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) { in storeTopLevelDecls()
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | ModuleBuilder.cpp | 122 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 129 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in HandleTopLevelDecl()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | Stmt.h | 450 DeclGroupRef DG; variable 455 SourceLocation endLoc) : Stmt(DeclStmtClass), DG(dg), in DeclStmt() 464 return DG.isSingleDecl(); in isSingleDecl() 467 const Decl *getSingleDecl() const { return DG.getSingleDecl(); } in getSingleDecl() 468 Decl *getSingleDecl() { return DG.getSingleDecl(); } in getSingleDecl() 470 const DeclGroupRef getDeclGroup() const { return DG; } in getDeclGroup() 471 DeclGroupRef getDeclGroup() { return DG; } in getDeclGroup() 472 void setDeclGroup(DeclGroupRef DGR) { DG = DGR; } in setDeclGroup() 488 return child_range(child_iterator(DG.begin(), DG.end()), in children() 489 child_iterator(DG.end(), DG.end())); in children() [all …]
|
| /NextBSD/usr.bin/calendar/calendars/ |
| HD | calendar.computer | 19 01/24 DG Nova introduced, 1969
|
| /NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/ |
| HD | ObjCMT.cpp | 134 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 135 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in HandleTopLevelDecl() 139 void HandleInterestingDecl(DeclGroupRef DG) override { in HandleInterestingDecl() argument 142 void HandleTopLevelDeclInObjCContainer(DeclGroupRef DG) override { in HandleTopLevelDeclInObjCContainer() argument 143 ObjCMigrateASTConsumer::HandleTopLevelDecl(DG); in HandleTopLevelDeclInObjCContainer()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Parse/ |
| HD | ParseStmt.cpp | 1553 DeclGroupPtrTy DG = ParseSimpleDeclaration( in ParseForStatement() local 1556 FirstPart = Actions.ActOnDeclStmt(DG, DeclStart, Tok.getLocation()); in ParseForStatement() 1565 Actions.ActOnForEachDeclStmt(DG); in ParseForStatement() 1570 Actions.CodeCompleteObjCForCollection(getCurScope(), DG); in ParseForStatement()
|
| HD | ParseObjc.cpp | 2212 DeclGroupRef DG = DGP.get(); in ParseObjCAtImplementationDeclaration() local 2213 DeclsInGroup.append(DG.begin(), DG.end()); in ParseObjCAtImplementationDeclaration()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaStmt.cpp | 73 DeclGroupRef DG = dg.get(); in ActOnDeclStmt() local 76 if (DG.isNull()) return StmtError(); in ActOnDeclStmt() 78 return new (Context) DeclStmt(DG, StartLoc, EndLoc); in ActOnDeclStmt() 82 DeclGroupRef DG = dg.get(); in ActOnForEachDeclStmt() local 86 if (DG.isNull() || !DG.isSingleDecl()) in ActOnForEachDeclStmt() 89 Decl *decl = DG.getSingleDecl(); in ActOnForEachDeclStmt()
|
| HD | SemaDeclObjC.cpp | 3682 DeclGroupRef DG = allTUVars[i].get(); in ActOnAtEnd() local 3683 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in ActOnAtEnd() 3693 DeclGroupRef DG = allTUVars[i].get(); in ActOnAtEnd() local 3694 for (DeclGroupRef::iterator I = DG.begin(), E = DG.end(); I != E; ++I) in ActOnAtEnd() 3696 Consumer.HandleTopLevelDeclInObjCContainer(DG); in ActOnAtEnd()
|
| HD | SemaTemplateInstantiateDecl.cpp | 3497 DeclGroupRef DG(Function); in InstantiateFunctionDefinition() local 3498 Consumer.HandleTopLevelDecl(DG); in InstantiateFunctionDefinition()
|
| HD | SemaCodeComplete.cpp | 5843 DeclGroupRef DG = IterationVar.get(); in CodeCompleteObjCForCollection() local 5844 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) { in CodeCompleteObjCForCollection()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | RewriteObjC.cpp | 262 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 280 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 681 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 687 DG.push_back(*DI); in HandleTopLevelSingleDecl() 693 RewriteForwardClassDecl(DG); in HandleTopLevelSingleDecl() 700 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 706 DG.push_back(*DI); in HandleTopLevelSingleDecl() 712 RewriteForwardProtocolDecl(DG); in HandleTopLevelSingleDecl() 1028 RewriteObjC::RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG) { in RewriteForwardProtocolDecl() argument 1029 SourceLocation LocStart = DG[0]->getLocStart(); in RewriteForwardProtocolDecl()
|
| HD | RewriteModernObjC.cpp | 316 void RewriteForwardClassDecl(const SmallVectorImpl<Decl *> &DG); 334 void RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG); 756 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 762 DG.push_back(*DI); in HandleTopLevelSingleDecl() 768 RewriteForwardClassDecl(DG); in HandleTopLevelSingleDecl() 781 SmallVector<Decl *, 8> DG; in HandleTopLevelSingleDecl() local 787 DG.push_back(*DI); in HandleTopLevelSingleDecl() 793 RewriteForwardProtocolDecl(DG); in HandleTopLevelSingleDecl() 1207 RewriteModernObjC::RewriteForwardProtocolDecl(const SmallVectorImpl<Decl *> &DG) { in RewriteForwardProtocolDecl() argument 1208 SourceLocation LocStart = DG[0]->getLocStart(); in RewriteForwardProtocolDecl()
|
| /NextBSD/contrib/top/ |
| HD | Configure | 361 few systems (such as DG/UX) on which this directory exists, but isn't
|
| /NextBSD/contrib/tcp_wrappers/ |
| HD | CHANGES | 272 - Workaround for a weird problem with DG/UX when the wrapper is run as 309 - TLI support, System V.4 style (Solaris, DG/UX).
|
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ASTImporter.cpp | 174 DeclGroupRef ImportDeclGroup(DeclGroupRef DG); 4576 DeclGroupRef ASTNodeImporter::ImportDeclGroup(DeclGroupRef DG) { in ImportDeclGroup() argument 4577 if (DG.isNull()) in ImportDeclGroup() 4579 size_t NumDecls = DG.end() - DG.begin(); in ImportDeclGroup() 4582 std::transform(DG.begin(), DG.end(), ToDecls.begin(), in ImportDeclGroup()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTWriterStmt.cpp | 216 DeclGroupRef DG = S->getDeclGroup(); in VisitDeclStmt() local 217 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D) in VisitDeclStmt()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/ |
| HD | ASTUnit.cpp | 935 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument 936 for (Decl *D : DG) { in HandleTopLevelDecl()
|
| /NextBSD/contrib/ncurses/misc/ |
| HD | terminfo.src | 13410 # DG terminals have function keys that respond to the SHIFT and CTRL keys, 13418 # DG terminals generally support 8 bit characters. For each of these terminals 13421 # uses the default DG international character set and keyboard codes. 13428 dgkeys+8b|Private entry describing DG terminal 8-bit ANSI mode special keys, 13453 dgkeys+7b|Private entry describing DG terminal 7-bit ANSI mode special keys, 13473 dgkeys+11|Private entry describing 11 minimal-subset DG mode special keys, 13484 dgkeys+15|Private entry describing 15 DG mode special keys, 13508 dgunix+fixed|Fixed color info for DG D430C terminals in DG-UNIX mode, 13516 dg+fixed|Fixed color info for DG D430C terminals in DG mode, 13539 dgmode+color8|Color info for Data General D220/D230C terminals in DG mode, [all …]
|
| /NextBSD/contrib/binutils/etc/ |
| HD | ChangeLog | 308 * Install.in, subst-strings: add case for DG Aviion
|
| /NextBSD/contrib/binutils/gas/ |
| HD | NEWS | 464 some code from Utah for HP-PA ELF, and from DG for m88k ELF, but they're not
|
| /NextBSD/contrib/gcc/ |
| HD | ONEWS | 151 Intel x86 processors running DG/UX. 640 - For DG/UX, an ELF configuration is now supported, and both the ELF
|
| /NextBSD/contrib/llvm/tools/clang/lib/Analysis/ |
| HD | CFG.cpp | 2003 DeclGroupRef DG(*I); in VisitDeclStmt() local 2006 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); in VisitDeclStmt()
|
| /NextBSD/lib/libmd/i386/ |
| HD | sha.S | 40 ELF - elf systems - linux-elf, NetBSD and DG-UX
|
| HD | rmd160.S | 39 ELF - elf systems - linux-elf, NetBSD and DG-UX
|