Home
last modified time | relevance | path

Searched refs:scalarUsage (Results 1 – 4 of 4) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/dist/Dumpvalue/t/
Dextend-coverage.t214 $x[0] = $d->scalarUsage($five);
215 is( $x[0], length($five), 'scalarUsage reports length correctly' );
219 $y[0] = $e->scalarUsage($five);
220 is( $y[0], length($five), 'scalarUsage reports length correctly' );
224 $x[1] = $f->scalarUsage($six, '7890');
225 is ($x[1], length($six), 'scalarUsage reports length of first element correctly' );
229 $y[1] = $g->scalarUsage($six, '7890');
230 is ($y[1], length($six), 'scalarUsage reports length of first element correctly' );
234 $x[2] = $h->scalarUsage( [ @arr ] );
236 'scalarUsage reports sum of length of array elements correctly' );
[all …]
DDumpvalue.t253 is( $d->scalarUsage('12345'), 5, 'scalarUsage reports length correctly' );
/openbsd/src/gnu/usr.bin/perl/lib/
Ddumpvar.pl503 sub scalarUsage {
512 map {$size += scalarUsage($_)} @{$_[0]};
537 $total += scalarUsage $name if defined $name;
/openbsd/src/gnu/usr.bin/perl/dist/Dumpvalue/lib/
DDumpvalue.pm457 sub scalarUsage { subroutine
475 map {$size += $self->scalarUsage($_)} @{$_[0]};
501 $total += $self->scalarUsage($stab) if defined $stab;