| /netbsd-src/external/gpl3/binutils/dist/zlib/contrib/ada/ |
| H A D | zlib-thin.ads | 387 pragma Import (C, zlibVersion, "zlibVersion"); 388 pragma Import (C, Deflate, "deflate"); 389 pragma Import (C, DeflateEnd, "deflateEnd"); 390 pragma Import (C, Inflate, "inflate"); 391 pragma Import (C, InflateEnd, "inflateEnd"); 392 pragma Import (C, deflateSetDictionary, "deflateSetDictionary"); 393 pragma Import (C, deflateCopy, "deflateCopy"); 394 pragma Import (C, deflateReset, "deflateReset"); 395 pragma Import (C, deflateParams, "deflateParams"); 396 pragma Import (C, inflateSetDictionary, "inflateSetDictionary"); [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/ada/ |
| H A D | zlib-thin.ads | 387 pragma Import (C, zlibVersion, "zlibVersion"); 388 pragma Import (C, Deflate, "deflate"); 389 pragma Import (C, DeflateEnd, "deflateEnd"); 390 pragma Import (C, Inflate, "inflate"); 391 pragma Import (C, InflateEnd, "inflateEnd"); 392 pragma Import (C, deflateSetDictionary, "deflateSetDictionary"); 393 pragma Import (C, deflateCopy, "deflateCopy"); 394 pragma Import (C, deflateReset, "deflateReset"); 395 pragma Import (C, deflateParams, "deflateParams"); 396 pragma Import (C, inflateSetDictionary, "inflateSetDictionary"); [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/contrib/ada/ |
| H A D | zlib-thin.ads | 387 pragma Import (C, zlibVersion, "zlibVersion"); 388 pragma Import (C, Deflate, "deflate"); 389 pragma Import (C, DeflateEnd, "deflateEnd"); 390 pragma Import (C, Inflate, "inflate"); 391 pragma Import (C, InflateEnd, "inflateEnd"); 392 pragma Import (C, deflateSetDictionary, "deflateSetDictionary"); 393 pragma Import (C, deflateCopy, "deflateCopy"); 394 pragma Import (C, deflateReset, "deflateReset"); 395 pragma Import (C, deflateParams, "deflateParams"); 396 pragma Import (C, inflateSetDictionary, "inflateSetDictionary"); [all …]
|
| /netbsd-src/common/dist/zlib/contrib/ada/ |
| H A D | zlib-thin.ads | 387 pragma Import (C, zlibVersion, "zlibVersion"); 388 pragma Import (C, Deflate, "deflate"); 389 pragma Import (C, DeflateEnd, "deflateEnd"); 390 pragma Import (C, Inflate, "inflate"); 391 pragma Import (C, InflateEnd, "inflateEnd"); 392 pragma Import (C, deflateSetDictionary, "deflateSetDictionary"); 393 pragma Import (C, deflateCopy, "deflateCopy"); 394 pragma Import (C, deflateReset, "deflateReset"); 395 pragma Import (C, deflateParams, "deflateParams"); 396 pragma Import (C, inflateSetDictionary, "inflateSetDictionary"); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | ASTImporter.h | 336 auto ToOrErr = Import(From); in importInto() 344 Import(ExprWithCleanups::CleanupObject From); 350 llvm::Expected<const Type *> Import(const Type *FromT); 356 llvm::Expected<QualType> Import(QualType FromT); 363 llvm::Expected<TypeSourceInfo *> Import(TypeSourceInfo *FromTSI); 370 llvm::Expected<Attr *> Import(const Attr *FromAttr); 377 llvm::Expected<Decl *> Import(Decl *FromD); 378 llvm::Expected<const Decl *> Import(const Decl *FromD) { in Import() function 379 return Import(const_cast<Decl *>(FromD)); in Import() 417 llvm::Expected<Expr *> Import(Expr *FromE); [all …]
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | dimport.c | 28 Import::Import(Loc loc, Identifiers *packages, Identifier *id, Identifier *aliasId, in Import() function 60 void Import::addAlias(Identifier *name, Identifier *alias) in addAlias() 72 const char *Import::kind() const in kind() 77 Prot Import::prot() in prot() 82 Dsymbol *Import::syntaxCopy(Dsymbol *s) in syntaxCopy() 86 Import *si = new Import(loc, packages, id, aliasId, isstatic); in syntaxCopy() 96 void Import::load(Scope *sc) in load() 169 void Import::importAll(Scope *sc) in importAll() 197 void Import::semantic(Scope *sc) in semantic() 387 void Import::semantic2(Scope *sc) in semantic2() [all …]
|
| H A D | import.h | 21 class Import : public Dsymbol 42 Import(Loc loc, Identifiers *packages, Identifier *id, Identifier *aliasId, 58 Import *isImport() { return this; } in isImport()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | WasmObjectWriter.cpp | 794 for (const wasm::WasmImport &Import : Imports) { in writeImportSection() local 795 writeString(Import.Module); in writeImportSection() 796 writeString(Import.Field); in writeImportSection() 797 W->OS << char(Import.Kind); in writeImportSection() 799 switch (Import.Kind) { in writeImportSection() 801 encodeULEB128(Import.SigIndex, W->OS); in writeImportSection() 804 W->OS << char(Import.Global.Type); in writeImportSection() 805 W->OS << char(Import.Global.Mutable ? 1 : 0); in writeImportSection() 808 encodeULEB128(Import.Memory.Flags, W->OS); in writeImportSection() 812 W->OS << char(Import.Table.ElemType); in writeImportSection() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 389 void MappingTraits<WasmYAML::Import>::mapping(IO &IO, in mapping() 390 WasmYAML::Import &Import) { in mapping() argument 391 IO.mapRequired("Module", Import.Module); in mapping() 392 IO.mapRequired("Field", Import.Field); in mapping() 393 IO.mapRequired("Kind", Import.Kind); in mapping() 394 if (Import.Kind == wasm::WASM_EXTERNAL_FUNCTION) { in mapping() 395 IO.mapRequired("SigIndex", Import.SigIndex); in mapping() 396 } else if (Import.Kind == wasm::WASM_EXTERNAL_GLOBAL) { in mapping() 397 IO.mapRequired("GlobalType", Import.GlobalImport.Type); in mapping() 398 IO.mapRequired("GlobalMutable", Import.GlobalImport.Mutable); in mapping() [all …]
|
| H A D | WasmEmitter.cpp | 374 for (const WasmYAML::Import &Import : Section.Imports) { in writeSectionContent() local 375 writeStringRef(Import.Module, OS); in writeSectionContent() 376 writeStringRef(Import.Field, OS); in writeSectionContent() 377 writeUint8(OS, Import.Kind); in writeSectionContent() 378 switch (Import.Kind) { in writeSectionContent() 380 encodeULEB128(Import.SigIndex, OS); in writeSectionContent() 384 writeUint8(OS, Import.GlobalImport.Type); in writeSectionContent() 385 writeUint8(OS, Import.GlobalImport.Mutable); in writeSectionContent() 389 writeUint32(OS, Import.EventImport.Attribute); in writeSectionContent() 390 writeUint32(OS, Import.EventImport.SigIndex); in writeSectionContent() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/msbuild/ |
| H A D | LLVM.Cpp.Common.props | 4 2) ├─ Import Microsoft.Cpp.props 5 …3) │ └─ Import Toolset specific props (e.g. $(VCTargets)Platforms\Win32\PlatformToolsets\llvm\Too… 6 4) │ └─ Import This File (LLVM.Cpp.Common.props) 8 6) └─ Import Microsoft.Cpp.targets 9 …7) │─ Import Toolset specific targets file (e.g. $(VCTargets)Platforms\Win32\PlatformToolsets\l… 51 …<Import Project="$(VCTargetsPath)\Microsoft.Cpp.WindowsSDK.props" Condition="Exists('$(VCTargetsPa… 52 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Common.props" />
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| H A D | wasm2yaml.cpp | 228 for (auto &Import : Obj.imports()) { in dump() local 229 WasmYAML::Import Im; in dump() 230 Im.Module = Import.Module; in dump() 231 Im.Field = Import.Field; in dump() 232 Im.Kind = Import.Kind; in dump() 235 Im.SigIndex = Import.SigIndex; in dump() 238 Im.GlobalImport.Type = Import.Global.Type; in dump() 239 Im.GlobalImport.Mutable = Import.Global.Mutable; in dump() 242 Im.EventImport.Attribute = Import.Event.Attribute; in dump() 243 Im.EventImport.SigIndex = Import.Event.SigIndex; in dump() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/test/recipes/ |
| H A D | 80-test_pkcs12.t | 33 Win32::API->Import("kernel32","UINT GetSystemDefaultLCID()"); 38 Win32::API->Import("kernel32","UINT GetConsoleOutputCP()"); 39 Win32::API->Import("kernel32","BOOL SetConsoleOutputCP(UINT cp)");
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | import.h | 20 class Import : public Dsymbol 43 Import *syntaxCopy(Dsymbol *s); // copy only syntax trees 52 Import *isImport() { return this; } in isImport()
|
| H A D | dimport.d | 30 extern (C++) final class Import : Dsymbol 112 override Import syntaxCopy(Dsymbol s) in syntaxCopy() 115 auto si = new Import(loc, packages, id, aliasId, isstatic); in syntaxCopy() 342 Import imp; in overloadInsert() 349 override inout(Import) isImport() inout in inout() argument
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/clang-import-test/ |
| H A D | clang-import-test.cpp | 270 for (CIAndOrigins &Import : Imports) in AddExternalSource() 271 Sources.emplace_back(Import.getASTContext(), Import.getFileManager(), in AddExternalSource() 272 Import.getOriginMap()); in AddExternalSource() 346 for (CIAndOrigins &Import : Imports) in Forget() 347 Sources.push_back({Import.getASTContext(), Import.getFileManager(), in Forget() 348 Import.getOriginMap()}); in Forget()
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/ |
| H A D | 80-test_pkcs12.t | 30 Win32::API->Import("kernel32","UINT GetSystemDefaultLCID()"); 35 Win32::API->Import("kernel32","UINT GetConsoleOutputCP()"); 36 Win32::API->Import("kernel32","BOOL SetConsoleOutputCP(UINT cp)");
|
| /netbsd-src/dist/pf/ |
| H A D | README.NetBSD | 14 # 3) Import the new PF release into the test repository 18 # 7) Import the new PF release into the test repository 22 # 11) Import the new PF release into the NetBSD repository 134 # Import the new version 136 cvs import -I ! -I CVS -m "Import PF from OpenBSD ${VERSION}" \ 214 # Import the new version 216 cvs import -I ! -I CVS -m "Import PF from OpenBSD ${VERSION}" \ 267 # Import the new version 269 cvs import -I ! -I CVS -m "Import PF from OpenBSD ${VERSION}" \
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 553 wasm::WasmImport &Import = *ImportedFunctions[Info.ElementIndex]; in parseLinkingSectionSymtab() local 556 Info.ImportName = Import.Field; in parseLinkingSectionSymtab() 558 Info.Name = Import.Field; in parseLinkingSectionSymtab() 560 Signature = &Signatures[Import.SigIndex]; in parseLinkingSectionSymtab() 561 if (!Import.Module.empty()) { in parseLinkingSectionSymtab() 562 Info.ImportModule = Import.Module; in parseLinkingSectionSymtab() 585 wasm::WasmImport &Import = *ImportedGlobals[Info.ElementIndex]; in parseLinkingSectionSymtab() local 588 Info.ImportName = Import.Field; in parseLinkingSectionSymtab() 590 Info.Name = Import.Field; in parseLinkingSectionSymtab() 592 GlobalType = &Import.Global; in parseLinkingSectionSymtab() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/readline/ |
| H A D | ChangeLog | 3 * readline/support/config.guess: Import from upstream. 13 * Import readline 8.1.
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/ |
| H A D | ModuleDepCollector.cpp | 228 for (const Module *Import : M->Imports) { in addModuleDep() local 229 if (Import->getTopLevelModule() != M->getTopLevelModule()) { in addModuleDep() 230 ModuleID ImportID = handleTopLevelModule(Import->getTopLevelModule()); in addModuleDep() 231 if (AddedModules.insert(Import->getTopLevelModule()).second) in addModuleDep()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ExternalASTMerger.cpp | 59 auto SourceNameOrErr = ReverseImporter.Import(Name); in LookupSameContext() 175 auto DeclOrErr = OtherImporter.Import(Persistent); in ImportImpl() 457 auto ImportedSpecOrError = Importer->Import(Spec); in importSpecializations() 492 auto FromNameOrErr = Reverse.Import(Name); in FindExternalVisibleDeclsByName() 512 auto NDOrErr = Importer->Import(LookupRes); in FindExternalVisibleDeclsByName() 535 auto ImportedDeclOrErr = Forward.Import(SourceDecl); in FindExternalLexicalDecls()
|
| H A D | ASTImporter.cpp | 154 auto ToOrErr = Importer.Import(From); in importInto() 164 auto ToOrErr = Importer.Import(From); in import() 178 return Importer.Import(From); in import() 917 IdentifierInfo *ToFieldName = Importer.Import(D.getFieldName()); in import() 1533 IdentifierInfo *ToName = Importer.Import(T->getIdentifier()); in VisitDependentTemplateSpecializationType() 1551 IdentifierInfo *Name = Importer.Import(T->getIdentifier()); in VisitDependentNameType() 1923 if (ExpectedDecl ToTypedefOrErr = Importer.Import(FromTypedef)) in setTypedefNameForAnonDecl() 2435 IdentifierInfo *ToIdentifier = Importer.Import(D->getIdentifier()); in VisitNamespaceAliasDecl() 4992 Importer.Import(D->getIdentifier()), Category->getClassInterface(), in VisitObjCCategoryImplDecl() 5268 D->getDepth(), D->getIndex(), Importer.Import(D->getIdentifier()), in VisitTemplateTypeParmDecl() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-link/ |
| H A D | llvm-link.cpp | 301 for (const auto &Import : Imports) { in importFunctions() local 303 size_t Idx = Import.find(':'); in importFunctions() 305 errs() << "Import parameter bad format: " << Import << "\n"; in importFunctions() 308 std::string FunctionName = Import.substr(0, Idx); in importFunctions() 309 std::string FileName = Import.substr(Idx + 1, std::string::npos); in importFunctions()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 86 struct Import { struct 286 std::vector<Import> Imports; 411 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR() 445 template <> struct MappingTraits<WasmYAML::Import> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 446 static void mapping(IO &IO, WasmYAML::Import &Import); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|