Searched refs:typemap (Results 1 - 7 of 7) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/Typemap/ |
H A D | Typemap.pm | 19 for each typemap definition (eventually). In general each function 20 takes a variable, processes it through the OUTPUT typemap and then 21 returns it using the INPUT typemap. 25 provided the function will be named after the typemap entry and have
|
H A D | Typemap.xs | 3 XS code to test the typemap entries 62 Each C type is represented by an entry in the typemap file that 82 mortal by the INPUT typemap when it is pushed back onto the stack */ 84 /* increment the refcount since the default INPUT typemap mortalizes 154 The T_SYSRET typemap is used to process return values from system calls. 159 and (usually) 0 on success. If the return value is -1 this typemap 160 returns C<undef>. If the return value is not -1, this typemap 218 A signed integer. This typemap converts the Perl value to a native 267 the return to type C<short>. The default typemap for C<short> 273 casts the return to type C<unsigned short>. The default typemap fo [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/ |
H A D | xsubpp | 9 B<xsubpp> [B<-v>] [B<-C++>] [B<-except>] [B<-s pattern>] [B<-prototypes>] [B<-noversioncheck>] [B<-nolinenumbers>] [B<-nooptimize>] [B<-typemap typemap>] ... file.xs 20 The compiler will search for typemap files called I<typemap>. It will use 22 typemap taking precedence. 24 ../../../typemap:../../typemap:../typemap:typemap 45 =item B<-typemap typema [all...] |
H A D | MM_VMS.pm | 746 my(@tmdeps) = $self->catfile($tmdir,'typemap'); 748 my $typemap; 749 foreach $typemap (@{$self->{TYPEMAPS}}){ 750 if( ! -f $typemap ){ 751 warn "Typemap $typemap not found.\n"; 754 push(@tmdeps, $self->fixpath($typemap,0)); 758 push(@tmdeps, "typemap") if -f "typemap"; 759 my(@tmargs) = map("-typemap $_", @tmdeps);
|
H A D | MakeMaker.pm | 2004 Ref to array of typemap file names. Use this when the typemaps are 2006 not named B<typemap>. The last typemap in the list takes 2007 precedence. A typemap in the current directory has highest 2009 typemap has lowest precedence.
|
H A D | MM_Unix.pm | 3956 my(@tmdeps) = $self->catfile($tmdir,'typemap'); 3958 my $typemap; 3959 foreach $typemap (@{$self->{TYPEMAPS}}){ 3960 if( ! -f $typemap ){ 3961 warn "Typemap $typemap not found.\n"; 3964 push(@tmdeps, $typemap); 3968 push(@tmdeps, "typemap") if -f "typemap"; 3969 my(@tmargs) = map("-typemap $_", @tmdeps);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/ |
H A D | h2xs.PL | 278 result in XSUB-declarations/typemap-entries which need 1506 my %typemap; 1740 # We do not want to read ./typemap by obvios reasons. 1741 my @tm = qw(../../../typemap ../../typemap ../typemap); 1742 my $stdtypemap = "$Config::Config{privlib}/ExtUtils/typemap"; 1747 $typemap{float} = 'T_NV'; 1749 foreach my $typemap (@tm) { 1750 next unless -e $typemap ; [all...] |
Completed in 98 milliseconds