/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/Spec/t/ |
H A D | Spec.t | 5 # Grab all of the plain routines from File::Spec 6 use File::Spec @File::Spec::EXPORT_OK ; 8 require File::Spec::Unix ; 9 require File::Spec::Win32 ; 19 # on VMS. It might be better to change File::Spec::VMS to do this, 23 sub File::Spec::VMS::vmsify { die "$skip_exception" } subroutine 24 sub File::Spec::VMS::unixify { die "$skip_exception" } subroutine 25 sub File::Spec::VMS::vmspath { die "$skip_exception" } subroutine 29 require File 565 sub File::Spec::FakeWin32::_cwd { 'C:\\\\one\\\\two' } subroutine [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/ |
H A D | Spec.pm | 1 package File::Spec; 13 NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare. 14 dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP. 20 require "File/Spec/$module.pm"; 21 @ISA = ("File::Spec::$module"); 29 File::Spec - portably perform operations on file names 33 use File::Spec; 35 $x=File::Spec->catfile('a', 'b', 'c'); 39 use File::Spec::Functions; 56 File [all...] |
H A D | CheckTree.pm | 1 package File::CheckTree; 6 use File::Spec; 20 use File::CheckTree; 53 File::CheckTree was derived from lib/validate.pl which was 59 File::CheckTree used to not display fatal error messages. 65 The first fixed version of File::CheckTree was 4.2. 87 # but earlier versions of File::CheckTree did not do this either 113 $file = File::Spec->catfile($cwd, $file) 114 if $cwd && !File::Spec->file_name_is_absolute($file);
|
H A D | Path.pm | 1 package File::Path; 5 File::Path - create or remove directory trees 9 use File::Path; 117 use File::Basename (); 154 my $parent = File::Basename::dirname($path);
|
H A D | Basename.pm | 1 package File::Basename; 13 use File::Basename; 20 ($name,$path,$suffix) = fileparse("lib/File/Basename.pm",qr{\.pm}); 22 $basename = basename("lib/File/Basename.pm",".pm"); 23 $dirname = dirname("lib/File/Basename.pm"); 129 # File::Basename is used during the Perl build, when the re extension may 278 local($File::Basename::Fileparse_fstype) = $fstype;
|
H A D | Compare.pm | 1 package File::Compare; 136 File::Compare - Compare files or filehandles 140 use File::Compare; 148 The File::Compare::compare function compares the contents of two 150 from File::Compare by default. 152 File::Compare::cmp is a synonym for File::Compare::compare. It is 153 exported from File::Compare only by request. 155 File::Compare::compare_text does a line by line comparison of the two 169 File [all...] |
H A D | stat.pm | 1 package File::stat; 28 struct 'File::stat' => [ 67 File::stat - by-name interface to Perl's built-in stat() functions 71 use File::stat; 77 use File::stat qw(:FIELDS); 87 "File::stat" objects. This object has methods that 130 my $stat_obj = File::stat::populate(CORE::stat(_));
|
H A D | Copy.pm | 0 # File/Copy.pm. Written in 1994 by Aaron Sherman <ajs@ajs.com>. This 8 package File::Copy; 14 use File::Spec; 23 # the File/Copy.pm module of the File-Tools-2.0 package. However, that 46 require File::Basename; 47 import File::Basename 'basename'; 55 return File::Spec->catfile($to, basename($from)); 267 File::Copy - Copy files or filehandles 271 use File [all...] |
H A D | DosGlob.pm | 4 #Can't use string ("main::glob") as a symbol ref while "strict refs" in use at /usr/lib/perl5/5.005/File/DosGlob.pm line 191. 10 package File::DosGlob; 300 # package by saying C<use File::DosGlob 'glob';> in that 422 File::DosGlob - DOS like globbing and then some 429 use File::DosGlob 'glob'; 432 use File::DosGlob 'GLOBAL_glob'; 448 that it will find something like '..\lib\File/DosGlob.pm' alright).
|
H A D | Find.pm | 1 package File::Find; 18 File::Find - Traverse a directory tree. 22 use File::Find; 26 use File::Find; 30 use File::Find; 36 on each file found similar to the Unix I<find> command. File::Find 93 directory is in C<$File::Find::dir>. Your preprocessing function is 105 arguments. The name of the current directory is in C<$File::Find::dir>. This 128 There is a variable C<$File::Find::fullname> which holds the absolute 146 are about to be processed a second time, File [all...] |
H A D | Temp.pm | 1 package File::Temp; 5 File::Temp - return name and handle of a temporary file safely 44 use File::Temp qw/ tempfile tempdir /; 56 require File::Temp; 57 use File::Temp (); 59 $fh = new File::Temp($template); 62 $tmp = new File::Temp( UNLINK => 0, SUFFIX => '.dat' ); 69 use File::Temp qw/ :mktemp /; 80 use File::Temp qw/ :POSIX /; 91 $unopened_file = File [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/ |
H A D | File.pm | 3 package IO::File; 7 IO::File - supply object methods for filehandles 11 use IO::File; 13 $fh = new IO::File; 19 $fh = new IO::File "> file"; 25 $fh = new IO::File "file", "r"; 31 $fh = new IO::File "file", O_WRONLY|O_APPEND; 45 C<IO::File> inherits from C<IO::Handle> and C<IO::Seekable>. It extends 54 Creates an C<IO::File>. If it receives any parameters, they are passed to 60 Creates an C<IO::File> opene [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/Spec/ |
H A D | Functions.pm | 1 package File::Spec::Functions; 3 use File::Spec; 40 my $sub = File::Spec->can($meth); 42 *{$meth} = sub {&$sub('File::Spec', @_)}; 51 File::Spec::Functions - portably perform operations on file names 55 use File::Spec::Functions; 61 provided by File::Spec. 63 For a reference of available functions, please consult L<File::Spec::Unix>, 65 other platforms. For further information, please see L<File::Spec::Mac>, 66 L<File [all...] |
H A D | Epoc.pm | 1 package File::Spec::Epoc; 8 require File::Spec::Unix; 9 @ISA = qw(File::Spec::Unix); 13 File::Spec::Epoc - methods for Epoc file specs 17 require File::Spec::Epoc; # Done internally by File::Spec if needed 21 See File::Spec::Unix for a documentation of the methods provided 65 See L<File::Spec> and L<File::Spec::Unix>. This package overrides the
|
H A D | Cygwin.pm | 1 package File::Spec::Cygwin; 5 require File::Spec::Unix; 9 @ISA = qw(File::Spec::Unix); 13 File::Spec::Cygwin - methods for Cygwin file specs 17 require File::Spec::Cygwin; # Done internally by File::Spec if needed 21 See L<File::Spec> and L<File::Spec::Unix>. This package overrides the 36 and then File::Spec::Unix canonpath() is called on the result. 51 and if not, File [all...] |
H A D | OS2.pm | 1 package File::Spec::OS2; 5 require File::Spec::Unix; 9 @ISA = qw(File::Spec::Unix); 235 File::Spec::OS2 - methods for OS/2 file specs 239 require File::Spec::OS2; # Done internally by File::Spec if needed 243 See L<File::Spec> and L<File::Spec::Unix>. This package overrides the
|
H A D | Win32.pm | 1 package File::Spec::Win32; 6 require File::Spec::Unix; 10 @ISA = qw(File::Spec::Unix); 14 File::Spec::Win32 - methods for Win32 file specs 18 require File::Spec::Win32; # Done internally by File::Spec if needed 22 See File::Spec::Unix for a documentation of the methods provided 51 The SYS:/temp is preferred in Novell NetWare (the File::Spec::Win32 170 ($volume,$directories,$file) = File::Spec->splitpath( $path ); 171 ($volume,$directories,$file) = File [all...] |
H A D | Mac.pm | 1 package File::Spec::Mac; 5 require File::Spec::Unix; 9 @ISA = qw(File::Spec::Unix); 21 File::Spec::Mac - File::Spec for Mac OS (Classic) 25 require File::Spec::Mac; # Done internally by File::Spec if needed 57 to portability reasons. Since C<File::Spec-E<gt>catdir()> returns relative paths 137 like passingC<File::Spec-E<gt>rootdir()> as the first argument, i.e. 177 versions of File [all...] |
H A D | Unix.pm | 1 package File::Spec::Unix; 10 File::Spec::Unix - File::Spec for Unix, base for other File::Spec modules 14 require File::Spec::Unix; # Done automatically by File::Spec 18 Methods for manipulating file specifications. Other File::Spec 19 modules, such as File::Spec::Mac, inherit from File::Spec::Unix and 31 $cpath = File [all...] |
H A D | VMS.pm | 1 package File::Spec::VMS; 5 require File::Spec::Unix; 9 @ISA = qw(File::Spec::Unix); 11 use File::Basename; 16 File::Spec::VMS - methods for VMS file specs 20 require File::Spec::VMS; # Done internally by File::Spec if needed 24 See File::Spec::Unix for a documentation of the methods provided 393 return vmspath(File::Spec::Unix::abs2rel( $self, @_ )) 446 return vmspath(File [all...] |
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/File/ |
H A D | File.pm | 6 # File.pm contains wrappers for the exacct file manipulation routines. 13 package Sun::Solaris::Exacct::File;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/ |
H A D | Glob.pm | 1 package File::Glob; 71 *CORE::GLOBAL::glob = \&File::Glob::csh_glob; 96 XSLoader::load 'File::Glob', $VERSION; 125 # File::Glob::glob() is deprecated because its prototype is different from 132 ## borrowed heavily from gsar's File::DosGlob 193 File::Glob - Perl extension for BSD glob routine 197 use File::Glob ':glob'; 206 use File::Glob ':globally'; 210 use File::Glob qw(:globally :case); 214 use File [all...] |
/osnet-11/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/ |
H A D | Program.java | 42 * @see Consumer#compile(java.io.File program, String[] macroArgs) 96 * contents of the {@code File} passed to {@link 97 * Consumer#compile(java.io.File program, String[] macroArgs)} 170 getProgramString(java.io.File programFile) throws IOException 215 public static final class File extends Program { class in class:Program 220 java.io.File file; 223 File() method in class:Program.File 241 * @return the {@code File} passed to {@link 242 * Consumer#compile(java.io.File program, String[] macroArgs)} 244 public java.io.File [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/ |
H A D | File.pm | 2 package Tie::File; 59 $opts{cache} = Tie::File::Cache->new($opts{memory}); 178 # the length of the record matches what 'tell' says. If not, Tie::File 185 # croak "File encoding not supported"; 957 # File custodial services 1446 # Tie::File::Cache 1450 package Tie::File::Cache; 1451 $Tie::File::Cache::VERSION = $Tie::File::VERSION; 1469 @$self = (Tie::File [all...] |
/osnet-11/usr/src/lib/libast/common/sfio/ |
H A D | sftmp.c | 35 /* File not removable while there is an open file descriptor. 53 static File_t* File; /* list pf temp files */ variable 75 for(last = NIL(File_t*), ff = File; ff; last = ff, ff = ff->next) 80 File = ff->next; 106 for(ff = File; ff; ff = next) 129 if(!File) 137 ff->next = File; 138 File = ff;
|