Searched refs:directories (Results 1 - 25 of 49) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dtestlib.pm22 ExtUtils::testlib - add blib/* directories to @INC
35 to a test program the intermediate directories used by C<make> are
H A DInstalled.pm195 sub directories { subroutine
207 foreach my $dir ($self->directories($module, $type, @under)) {
255 my $all_dirs = $inst->directories("DBI");
294 directories. The filenames returned will be restricted to those under the
295 specified directories.
297 =item directories()
300 all the directories from the package. Additional parameters are allowed. The
302 program directories, just manual directories or all directories
[all...]
H A DCommand.pm29 perl -MExtUtils::Command -e rm_rf directories...
30 perl -MExtUtils::Command -e mkpath directories...
88 Removes directories - recursively (even if readonly)
179 Creates directory, including any parent directories.
H A Dinstmodsh18 d [all|prog|doc] - List the directories used by a module
49 if (eval { @dirs = $Inst->directories($module, $class); })
51 print("$class directories in $module are:\n ",
H A DLiblist.pm86 libraries. LD_RUN_PATH is a colon separated list of the directories
162 will be searched for in the directories specified in C<$potential_libs>,
186 be appended to any entries that are not directories and don't already have
210 valid files or directories.
H A DMM_Any.pm322 put them into the INST_* directories.
502 Mainly used to exclude RCS, CVS, and SCCS directories from
768 Do not use this as a seperator between directories. Some operating
770 directories and filenames (for example: VOLUME:[dir1.dir2]file on VMS).
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/Spec/
H A DWin32.pm170 ($volume,$directories,$file) = File::Spec->splitpath( $path );
171 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
220 @dirs = File::Spec->splitdir( $directories );
222 $directories must be only the directory portion of the path on systems
224 files from directories.
226 Unlike just splitting the directories on the separator, leading empty and
239 my ($self,$directories) = @_ ;
245 if ( $directories !~ m|[\\/]\Z(?!\n)| ) {
246 return split( m|[\\/]|, $directories );
253 my( @directories )
[all...]
H A DUnix.pm50 # (Mainly because trailing "" directories didn't get stripped).
228 ($volume,$directories,$file) = File::Spec->splitpath( $path );
229 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
234 For systems with no syntax differentiating filenames from directories,
268 @dirs = File::Spec->splitdir( $directories );
270 $directories must be only the directory portion of the path on systems
272 files from directories.
274 Unlike just splitting the directories on the separator, empty
334 directories.
381 # $base now contains the directories th
[all...]
H A DMac.pm110 of directories to climb up is handled correctly, not removing leading
442 ($volume,$directories,$file) = File::Spec->splitpath( $path );
443 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
482 # Make sure non-empty directories begin and end in ':'
498 @dirs = File::Spec->splitdir( $directories );
500 $directories should be only the directory portion of the path on systems
502 files from directories. Consider using C<splitpath()> otherwise.
504 Unlike just splitting the directories on the separator, empty directory names
532 my ($head, $sep, $tail, $volume, $directories);
537 ( $volume, $sep, $directories )
[all...]
H A DOS2.pm102 my ($self,$directories) = @_ ;
103 split m|[\\/]|, $directories, -1;
176 # $base_directories now contains the directories the resulting relative
186 #FA Must check that new directories are not empty.
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DSpec.pm98 $path = File::Spec->catdir( @directories );
105 $path = File::Spec->catfile( @directories, $filename );
128 list of possible temporary directories. Returns the current directory
129 if no writable temporary directories are found. The list of directories
181 ($volume,$directories,$file) = File::Spec->splitpath( $path );
182 ($volume,$directories,$file) = File::Spec->splitpath( $path, $no_file );
184 For systems with no syntax differentiating filenames from directories,
198 @dirs = File::Spec->splitdir( $directories );
200 $directories mus
[all...]
H A DPath.pm16 The C<mkpath> function provides a convenient way to create directories, even
35 the numeric mode to use when creating the directories
40 It returns a list of all directories (including intermediates, determined
61 a list of roots. All of the files and directories
88 in the face of failure or interruption. Files and directories which
H A DFind.pm44 find(\&wanted, @directories);
45 find(\%options, @directories);
47 C<find()> does a depth-first search over the given C<@directories> in
56 finddepth(\&wanted, @directories);
57 finddepth(\%options, @directories);
144 neither directories nor symbolic links to be ignored if they are about
152 directories but to proceed normally otherwise.
186 including all its sub-directories. The default is to 'die' in such a case.
221 directories is in effect the root directory (F</>) is a somewhat
295 force File::Find to always stat directories
[all...]
H A DTemp.pm108 directories. See L<"safe_level"> for more information.
367 my ($volume, $directories, $file);
371 ($volume, $directories, $file) = File::Spec->splitpath( $path, 1);
373 # The parent is then $directories without the last directory
375 my @dirs = File::Spec->splitdir($directories);
400 ($volume, $directories, $file) = File::Spec->splitpath( $path );
403 $parent = File::Spec->catpath($volume,$directories,'');
407 unless $directories ne '';
411 # Check that the parent directories exist
745 my ($volume, $directories, unde
[all...]
H A DDosGlob.pm480 all files and directories in the current directory.
485 name pattern like "*HD:"), i.e. a glob like <:*:> will find both directories
486 I<and> files (and not, as one might expect, only directories).
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dlib_pm.PL87 # Add any previous version directories we found at configure time
179 It is typically used to add extra directories to perl's search path so
183 =head2 Adding directories to @INC
202 =head2 Deleting directories from @INC
204 You should normally only add directories to @INC. If you need to
205 delete directories from @INC take care to only delete those which you
207 in your script. Other modules may have added directories which they
H A DFindBin.pm27 directories E<lt>rootE<gt>/bin and E<lt>rootE<gt>/lib and then the above example will allow
44 If there are two modules using C<FindBin> from different directories
181 # Get absolute paths to directories
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dminimod.pl115 C<writemain(@directories);>
123 writemain() takes an argument list of directories containing archive
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A DInstalled.t68 skip('no man directories on this system', 1) unless $mandirs;
165 skip('no man directories on this system', 1) unless $mandirs;
179 # directories
180 my @dirs = $ei->directories('goodmod', 'prog', 'fake');
181 is( scalar @dirs, 0, 'directories() should return no dirs if no files found' );
184 skip('no man directories on this system', 1) unless $mandirs;
185 @dirs = $ei->directories('goodmod', 'doc');
188 @dirs = $ei->directories('goodmod');
200 skip('no man directories on this system', 1) unless $mandirs;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DFind.pm62 =head2 C<pod_find( { %opts } , @directories )>
65 files and/or directories. It returns a hash with the file names as keys
78 is found, e.g. F<CPAN.pm> in different directories. This usually
82 with options. The rest are either directories that are searched
116 # rest is a list of directories to search recursively
331 Reference to an array of search directories. These are searched in order
337 List directories as they are searched
348 search directories. This ensures that e.g. L<perlfunc|perlfunc> is
426 # Loop over directories
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dperlcc.PL166 'I:s', # include directories (FOR C, NOT FOR PERL)
355 # DWIM the -I to be Perl, not C, include directories.
633 =item -LI<library directories>
635 Adds the given directories to the library search path when C code is
638 =item -II<include directories>
640 Adds the given directories to the include file search path when C code is
642 given directories to Perl's include path.
H A Dh2ph.PL583 # directory; so push directories, and unshift everything else.
650 # Determine include directories; $Config{usrinc} should be enough for (all
776 Run recursively; if any of B<headerfiles> are directories, then run I<h2ph>
777 on all files in those directories (and their subdirectories, etc.). B<-r>
784 directories which your C compiler ordinarily uses. B<-a> and B<-r> are
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/
H A DDynaLoader_pm.PL168 # Add to \@dl_library_path any extra directories we can gather from environment
277 next unless -d $dir; # skip over uninteresting directories
365 # or the perl library auto directories.
367 my (@dirs, $dir); # which directories to search
380 # accumulate directories but process files as they appear
400 # Deal with directories first:
405 # Otherwise we try to try to spot directories by a heuristic
428 # Otherwise we try to try to spot directories by a heuristic
580 The standard/default list of directories in which dl_findfile() will
584 @dl_library_path is initialised to hold the list of 'normal' directories
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2usage.PL102 Specifies one or more directories to search for the input file if it
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/
H A DGlob.pm299 Expand patterns that start with '~' to user name home directories.
409 all files and directories in the current directory.
415 directories I<and> files (and not, as one might expect, only directories).

Completed in 52 milliseconds

12