Home
last modified time | relevance | path

Searched refs:imports (Results 1 – 25 of 36) sorted by relevance

12

/mirbsd/src/gnu/usr.bin/perl/lib/Exporter/
DHeavy.pm61 my($pkg, $callpkg, @imports) = @_;
66 if (@imports) {
72 if (grep m{^[/!:]}, @imports) {
75 my %imports;
78 unshift @imports, ':DEFAULT' if $imports[0] =~ m/^!/;
79 foreach $spec (@imports){
108 foreach $sym (@names) { delete $imports{$sym} }
111 @imports{@names} = (1) x @names;
114 @imports = keys %imports;
118 foreach $sym (@imports) {
[all …]
/mirbsd/src/gnu/usr.bin/perl/lib/Test/Builder/
DModule.pm94 my(@imports) = $class->_strip_imports(\@_);
98 $class->$_export_to_level(1, $class, @imports);
106 my @imports = ();
113 push @imports, @{$list->[$idx+1]};
125 return @imports;
DTester.pm85 my @imports = ();
88 @imports = @{$plan[$idx+1]};
93 __PACKAGE__->_export_to_level(1, __PACKAGE__, @imports);
/mirbsd/src/gnu/usr.bin/binutils/ld/
Ddeffilep.y362 if (def->imports) in def_file_free()
366 if (def->imports[i].internal_name in def_file_free()
367 && def->imports[i].internal_name != def->imports[i].name) in def_file_free()
368 free (def->imports[i].internal_name); in def_file_free()
369 if (def->imports[i].name) in def_file_free()
370 free (def->imports[i].name); in def_file_free()
372 free (def->imports); in def_file_free()
457 def->imports[i].internal_name, in def_file_print()
458 def->imports[i].module, in def_file_print()
459 def->imports[i].name, in def_file_print()
[all …]
Dpe-dll.c1420 def_file_import *im = pe_def_file->imports + i; in pe_dll_generate_def_file()
2326 if (pe_def_file->imports[i].module == module) in pe_process_import_defs()
2330 int lead_at = (*pe_def_file->imports[i].internal_name == '@'); in pe_process_import_defs()
2332 size_t len = strlen (pe_def_file->imports[i].internal_name); in pe_process_import_defs()
2337 pe_def_file->imports[i].internal_name); in pe_process_import_defs()
2340 pe_def_file->imports[i].internal_name); in pe_process_import_defs()
2349 pe_def_file->imports[i].internal_name); in pe_process_import_defs()
2352 pe_def_file->imports[i].internal_name); in pe_process_import_defs()
2369 exp.internal_name = pe_def_file->imports[i].internal_name; in pe_process_import_defs()
2370 exp.name = pe_def_file->imports[i].name; in pe_process_import_defs()
[all …]
Ddeffile.h82 def_file_import *imports; member
Dld.texinfo2070 DATA imports from DLLs, and create the necessary thunking symbols when
2195 @code{__imp__symbol} for DATA imports from DLLs.
2201 that is, DATA imports from DLL with non-zero offset, this switch will create
2208 Do not create pseudo relocations for non-zero offset DATA imports from
5561 @samp{--enable-auto-import} and @samp{automatic data imports} for more
5565 @cindex automatic data imports
5566 @item automatic data imports
5567 The standard Windows dll format supports data imports from dlls only
/mirbsd/src/gnu/usr.bin/perl/lib/
Dsubs.pm34 my @imports = @_;
35 foreach $sym (@imports) {
Dvars.pm12 my ($pack, @imports) = @_;
14 foreach (@imports) {
DExporter.t114 my @imports = qw($seatbelt &Above stuff @wailing %left);
115 Testing->import(@imports);
117 ::ok( (!grep { eval "!defined $_" } map({ /^\w/ ? "&$_" : $_ } @imports)),
/mirbsd/src/gnu/usr.bin/perl/lib/Test/
DMore.pm653 my($module, @imports) = @_;
654 @imports = () unless @imports;
661 if( @imports == 1 and $imports[0] =~ /^\d+(?:\.\d+)?$/ ) {
666 use $module $imports[0];
/mirbsd/src/gnu/usr.bin/perl/lib/ExtUtils/
DMM_OS2.pm57 my($imports) = $attribs{IMPORTS} || $self->{IMPORTS} || {};
71 ', "IMPORTS" => ',neatvalue($imports),
DMM_Win32.pm56 my($imports) = $attribs{IMPORTS} || $self->{IMPORTS} || {};
72 q!, 'IMPORTS' => !,neatvalue($imports),
/mirbsd/src/gnu/usr.bin/binutils/bfd/
Dpef.c738 bfd_pef_imported_symbol *imports = NULL; in bfd_pef_parse_function_stubs() local
752 imports = bfd_malloc in bfd_pef_parse_function_stubs()
773 4, &imports[i])); in bfd_pef_parse_function_stubs()
821 if (loaderlen < (header.loader_strings_offset + imports[index].name)) in bfd_pef_parse_function_stubs()
824 max = loaderlen - (header.loader_strings_offset + imports[index].name); in bfd_pef_parse_function_stubs()
826 symname += header.loader_strings_offset + imports[index].name; in bfd_pef_parse_function_stubs()
867 if (imports != NULL) in bfd_pef_parse_function_stubs()
868 free (imports); in bfd_pef_parse_function_stubs()
875 if (imports != NULL) in bfd_pef_parse_function_stubs()
876 free (imports); in bfd_pef_parse_function_stubs()
Dxcofflink.c461 ret->imports = NULL; in _bfd_xcoff_bfd_link_hash_table_create()
767 for (pp = &xcoff_hash_table (info)->imports, c = 1; in xcoff_link_add_dynamic_symbols()
2524 for (pp = &xcoff_hash_table (info)->imports, c = 1; in bfd_xcoff_import_symbol()
3137 for (fl = xcoff_hash_table (info)->imports; fl != NULL; fl = fl->next) in bfd_xcoff_size_dynamic_sections()
3188 for (fl = xcoff_hash_table (info)->imports; fl != NULL; fl = fl->next) in bfd_xcoff_size_dynamic_sections()
/mirbsd/src/gnu/usr.bin/binutils/include/coff/
Dxcoff.h363 struct xcoff_import_file *imports; member
/mirbsd/src/gnu/usr.bin/perl/lib/Term/ANSIColor/
DChangeLog121 versions of Perl >5.004_04 since up until then strict.pm imports
/mirbsd/src/gnu/usr.bin/binutils/include/
Dhp-symtab.h1798 unsigned int imports: 1; /* module have any imports? */ member
/mirbsd/src/gnu/usr.bin/perl/NetWare/
DMakefile77 NLMIMPORTS = $(NLMSDKBASE)\imports
80 SECURITY_IMPORTS = $(SECURITYBASE)\imports
/mirbsd/src/gnu/usr.bin/perl/ext/DB_File/
DChanges443 DB_File now imports the constants (O_RDWR, O_CREAT etc.) from Fcntl
/mirbsd/src/usr.bin/sudo/
DREADME.LDAP169 # Same thing as above, but imports better into SunONE or iPlanet
/mirbsd/src/gnu/usr.bin/cvs/
DNEWS332 * Thanks to a report from Dan Peterson <dbpete@aol.com>, imports to branches
1944 conflicting files on next-time imports.
1987 import: Replaces "checkin" shell script; imports sources
/mirbsd/src/gnu/usr.bin/perl/pod/
Dperlothrtut.pod256 it; use Thread imports all the pieces you need to create basic
Dperlfaq8.pod1203 4.2: imports symbols and semantics from that package to the current one.
/mirbsd/src/gnu/share/
Dltmain.sh4759 /* DATA imports from DLLs on WIN32 can't be const, because

12