/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | dumpvar.t | 27 sub stringify { print dumpvar::stringify($_[0]), "\n" } subroutine 54 # TODO: dumpvar::stringify() is controlled by a pile of package 105 stringify(undef); 109 stringify("foo"); 113 stringify("\cA"); 117 stringify(*a); 121 stringify(\undef); 125 stringify([]); 129 stringify({}); [all...] |
H A D | Dumpvalue.t | 31 # check to see if stringify works 32 is( $d->stringify(), 'undef', 'stringify handles undef okay' ); 36 is( $d->stringify(), "''", 'stringify skips undef when asked nicely' ); 38 is( $d->stringify(*FOO), *FOO . "", 'stringify stringifies globs alright' ); 42 like( $d->stringify("hi\005"), qr/^"hi/, 'added double-quotes when necessary' ); 45 is( $d->stringify('hi'), "'hi'", 'used single-quotes when appropriate' ); 49 like( $d->stringify('doubl [all...] |
H A D | dumpvar.pl | 32 (print &stringify($_[0]), "\n"), return unless ref $_[0]; 54 sub stringify { subroutine 107 my $short = &stringify($_[0], ref $_[0]); 193 # map {&stringify($_) . " => " . &stringify($v->{$_})} 198 push @keys, &stringify($_) . " => " . &stringify($v->{$_}); 207 print "$sp", &stringify($key), " => "; 229 map {exists $v->[$_] ? stringify $v->[$_] : "empty"} ($[..$tArrayDepth) 273 print "$sp-> ",&stringify( [all...] |
H A D | Dumpvalue.pm | 63 (print $self->stringify($_[0]), "\n"), return unless ref $_[0]; 85 sub stringify { subroutine 126 my $short = $self->stringify($v, ref $v); 133 my @a = map $self->stringify($_), @$v[0..$depth]; 141 my @b = map {$self->stringify($_) . " => " . $self->stringify($$v{$_})} 207 push @keys, $self->stringify($_) . " => " . $self->stringify($v->{$_}); 216 print $sp, $self->stringify($key), " => "; 233 map {exists $v->[$_] ? $self->stringify( [all...] |
H A D | overload.t | 28 "" stringify 37 sub stringify { "${$_[0]}" } subroutine 40 # stringify 1074 test("$utfvar" eq 200.2.1); # 223 - stringify
|
H A D | overload.pm | 707 Gives string value of C<arg> as in absence of stringify overloading.
|
H A D | perl5db.pl | 298 =item * 8 - Adds parameter information to messages, and overloaded stringify and tied FETCH is enabled on the printed arguments. Ignored if C<4> is not on. 5400 # Grab and stringify the arguments if they are there. 5523 "$arg"; # Safe to stringify now - should not call f().
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/lib/Encode/ |
H A D | Encoder.pm | 158 because the stringify operator ("") is overridden to do exactly that. 236 This module overloads two operators, stringify ("") and numify (0+).
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/ |
H A D | bigintpm.inc | 78 } elsif ($f =~ /^(numify|length|stringify|as_hex|as_bin)$/) { 294 # object with stringify overload for this. see Math::String tests as example 431 # don't compare to $z, since some Perl versions stringify $z into something
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Safe/t/ |
H A D | safeops.t | 136 stringify "$x"
|
H A D | opcode.pl | 715 stringify string ck_fun fsT@ S
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Opcode/ |
H A D | Safe.pm | 118 &version::stringify 134 &version::vxs::stringify
|
H A D | Opcode.pm | 326 substr vec stringify study pos length index rindex ord chr
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | perl.h | 223 # define stringify(s) stringify_immed(s) macro 224 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/ |
H A D | Complex.pm | 89 qw("" stringify); 1338 # (stringify) 1347 sub stringify { subroutine
|
H A D | BigFloat.pm | 2916 =item stringify, bstr() 2918 Both stringify and bstr() now drop the leading '+'. The old code would return
|
H A D | BigInt.pm | 3931 Both C<bstr()> and C<bsstr()> as well as automated stringify via overload now
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/Peek/ |
H A D | Peek.pm | 305 stringify $b. The addresses inside RV() and IV() are addresses of
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/ |
H A D | Dumper.pm | 882 stringify it. This method can alter the contents of the object (if, for
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/ |
H A D | Storable.pm | 840 the hash table), it will work because both references stringify to the
|