Home
last modified time | relevance | path

Searched refs:arrayref (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/lldb/scripts/
H A Ddisasm-gdb-remote.pl452 my $arrayref = shift;
453 my $str = join('',@$arrayref);
467 my $arrayref = shift;
469 $$arrayref[0] == ';' and shift @$arrayref;
470 my $thread_href = extract_key_value_pairs ($arrayref);
551 my $arrayref = shift;
562 if ($$arrayref[0] eq '#')
570 my $reg_val = &$reg_extract($arrayref);
599 my $arrayref = shift;
600 splice(@$arrayref, -3);
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/CPAN-Meta-YAML/t/
H A D21_yamlpm_compat.t18 my $arrayref = [ 1 .. 5 ];
21 my $yamldump = CPAN::Meta::YAML::Dump( $scalar, $arrayref, $hashref );
25 [ $scalar, $arrayref, $hashref ],
32 my $arrayref = [ 1 .. 5 ];
39 $filename, $scalar, $arrayref, $hashref);
45 [ $scalar, $arrayref, $hashref ],
H A D01_api.t38 cmp_deeply( [ @$yaml ], \@docs, "the object is an arrayref of documents" );
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/API/
H A DInstance.pm626 =item $arrayref = $obj->post_load_callbacks
640 =item $arrayref = $obj->context_acquire_callbacks
644 =item $arrayref = $obj->context_init_callbacks
648 =item $arrayref = $obj->context_release_callbacks
652 =item $arrayref = $obj->pre_subtest_callbacks
731 =item $arrayref = $obj->exit_callbacks
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dinccode.t85 my $arrayref = [ \&fooinc2, 'Bar' ];
86 push @INC, $arrayref;
98 is( ref $INC{'Bar.pm'}, 'ARRAY', ' val Bar.pm is an arrayref in %INC' );
99 is( $INC{'Bar.pm'}, $arrayref, ' val Bar.pm is correct in %INC' );
103 is( ref $INC{'Bar1.pm'}, 'ARRAY', ' val Bar1.pm is an arrayref in %INC' );
104 is( $INC{'Bar1.pm'}, $arrayref, ' val Bar1.pm is correct in %INC' );
108 is( ref $INC{'Bar2.pl'}, 'ARRAY', ' val Bar2.pl is an arrayref in %INC' );
109 is( $INC{'Bar2.pl'}, $arrayref, ' val Bar2.pl is correct in %INC' );
/openbsd-src/gnu/usr.bin/perl/ext/Hash-Util-FieldHash/t/
H A D12_hashwarn.t37 cmp_ok(scalar(@warnings),'==',1,'arrayref count');
38 cmp_ok(substr($warnings[0],0,length($fail_ref)),'eq',$fail_ref,'arrayref msg');
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/
H A DInterceptResult.t15 is(reftype($one), 'ARRAY', "Blessed arrayref");
20 is(reftype($two), 'ARRAY', "Blessed arrayref");
25 is(reftype($three), 'ARRAY', "Blessed arrayref");
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/
H A DSubtest.t18 is_deeply($one->subevents, [], "subevents is an arrayref");
H A DGeneric.t67 "Must provide an arrayref"
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlref.pod70 $arrayref = \@ARGV;
83 X<bracket, square> X<arrayref> X<array reference> X<reference, array>
88 $arrayref = [1, 2, ['a', 'b', 'c']];
93 access this. For example, after the above, C<< $arrayref->[2][1] >> would have
256 $arrayref = *ARGV{ARRAY};
327 push(@$arrayref, $filename);
328 $$arrayref[0] = "January";
334 C<$arrayref[0]> or C<$hashref{"KEY"}> there. The dereference of the
351 push(@{$arrayref}, $filename);
352 ${$arrayref}[
[all...]
H A Dperlcheat.pod23 [] anon. arrayref ${$$foo[1]}[2] aka $foo->[1]->[2]
H A Dperl5140delta.pod290 | push @$arrayref, @stuff | push $arrayref, @stuff |
291 | unshift @$arrayref, @stuff | unshift $arrayref, @stuff |
292 | pop @$arrayref | pop $arrayref |
293 | shift @$arrayref | shift $arrayref |
294 | splice @$arrayref, 0, 2 | splice $arrayref,
[all...]
H A Dperlsyn.pod1319 arrayref is always a true value, which makes it effectively
H A Dperlsub.pod1577 die "Not an array or arrayref" unless ref $aref eq 'ARRAY';
H A Dperlfunc.pod7107 my ($arrayref, $filename) = @_;
7109 my (undef, @parameters) = @$arrayref;
7117 my ($self, $filename, $arrayref)= @_;
7118 my (undef, @parameters) = @$arrayref;
H A Dperldiag.pod145 might have meant to pass an anonymous arrayref to the function named
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/
H A DHashBase.t193 is($z->foo, 1, "set foo via arrayref");
194 is($z->baz, 4, "set baz via arrayref");
/openbsd-src/gnu/usr.bin/gcc/gcc/f/
H A Ddata.c502 bool arrayref = ffebld_op (ffebld_left (next)) == FFEBLD_opARRAYREF; in ffedata_advance_() local
507 ffedata_symbol_ = ffebld_symter (ffebld_left (arrayref in ffedata_advance_()
555 ffedata_expected_ = arrayref ? 1 : ffedata_arraysize_; in ffedata_advance_()
557 ffedata_offset_ = arrayref ? ffedata_eval_offset_ (ffebld_right in ffedata_advance_()
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dpuller.t155 print "# Testing pullparsing from an arrayref\n";
183 print "# Testing pullparsing from an arrayref with terminal newlines\n";
/openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dfetch_pad_names.t27 is ref fetch_pad_names($cv), ref [], 'Fetch returns an arrayref';
/openbsd-src/gnu/usr.bin/perl/t/lib/charnames/
H A Dalias122 # NAME alias with arrayref
/openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/
H A DChanges21 - Fix and improve the META repository as hashref, license as arrayref
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/API/InterceptResult/
H A DEvent.t48 qr/^Facet 'info' is a list facet, but got 'HASH' instead of an arrayref/,
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Perldoc/corpus/
H A Dperlfunc.pod