| /openbsd-src/gnu/llvm/lldb/scripts/ |
| H A D | disasm-gdb-remote.pl | 452 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 D | 21_yamlpm_compat.t | 18 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 D | 01_api.t | 38 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 D | Instance.pm | 626 =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 D | inccode.t | 85 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 D | 12_hashwarn.t | 37 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 D | InterceptResult.t | 15 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 D | Subtest.t | 18 is_deeply($one->subevents, [], "subevents is an arrayref");
|
| H A D | Generic.t | 67 "Must provide an arrayref"
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perlref.pod | 70 $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 D | perlcheat.pod | 23 [] anon. arrayref ${$$foo[1]}[2] aka $foo->[1]->[2]
|
| H A D | perl5140delta.pod | 290 | 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 D | perlsyn.pod | 1319 arrayref is always a true value, which makes it effectively
|
| H A D | perlsub.pod | 1577 die "Not an array or arrayref" unless ref $aref eq 'ARRAY';
|
| H A D | perlfunc.pod | 7107 my ($arrayref, $filename) = @_; 7109 my (undef, @parameters) = @$arrayref; 7117 my ($self, $filename, $arrayref)= @_; 7118 my (undef, @parameters) = @$arrayref;
|
| H A D | perldiag.pod | 145 might have meant to pass an anonymous arrayref to the function named
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/ |
| H A D | HashBase.t | 193 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 D | data.c | 502 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 D | puller.t | 155 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 D | fetch_pad_names.t | 27 is ref fetch_pad_names($cv), ref [], 'Fetch returns an arrayref';
|
| /openbsd-src/gnu/usr.bin/perl/t/lib/charnames/ |
| H A D | alias | 122 # NAME alias with arrayref
|
| /openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/ |
| H A D | Changes | 21 - 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 D | Event.t | 48 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 D | perlfunc.pod | |