Home
last modified time | relevance | path

Searched refs:DG (Results 1 – 25 of 35) sorted by relevance

12

/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
HDAnalysisConsumer.cpp381 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/
HDModuleBuilder.cpp122 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/
HDStmt.h450 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/
HDcalendar.computer19 01/24 DG Nova introduced, 1969
/NextBSD/contrib/llvm/tools/clang/lib/ARCMigrate/
HDObjCMT.cpp134 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/
HDParseStmt.cpp1553 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()
HDParseObjc.cpp2212 DeclGroupRef DG = DGP.get(); in ParseObjCAtImplementationDeclaration() local
2213 DeclsInGroup.append(DG.begin(), DG.end()); in ParseObjCAtImplementationDeclaration()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaStmt.cpp73 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()
HDSemaDeclObjC.cpp3682 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()
HDSemaTemplateInstantiateDecl.cpp3497 DeclGroupRef DG(Function); in InstantiateFunctionDefinition() local
3498 Consumer.HandleTopLevelDecl(DG); in InstantiateFunctionDefinition()
HDSemaCodeComplete.cpp5843 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/
HDRewriteObjC.cpp262 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()
HDRewriteModernObjC.cpp316 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/
HDConfigure361 few systems (such as DG/UX) on which this directory exists, but isn't
/NextBSD/contrib/tcp_wrappers/
HDCHANGES272 - 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/
HDASTImporter.cpp174 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/
HDASTWriterStmt.cpp216 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/
HDASTUnit.cpp935 bool HandleTopLevelDecl(DeclGroupRef DG) override { in HandleTopLevelDecl() argument
936 for (Decl *D : DG) { in HandleTopLevelDecl()
/NextBSD/contrib/ncurses/misc/
HDterminfo.src13410 # 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/
HDChangeLog308 * Install.in, subst-strings: add case for DG Aviion
/NextBSD/contrib/binutils/gas/
HDNEWS464 some code from Utah for HP-PA ELF, and from DG for m88k ELF, but they're not
/NextBSD/contrib/gcc/
HDONEWS151 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/
HDCFG.cpp2003 DeclGroupRef DG(*I); in VisitDeclStmt() local
2006 DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D)); in VisitDeclStmt()
/NextBSD/lib/libmd/i386/
HDsha.S40 ELF - elf systems - linux-elf, NetBSD and DG-UX
HDrmd160.S39 ELF - elf systems - linux-elf, NetBSD and DG-UX

12