Home
last modified time | relevance | path

Searched refs:sref (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/autodie/lib/
H A DFatal.pm787 my ($class, $core, $call, $name, $void, $lexical, $sub, $sref, @argvs) = @_;
794 return $class->_one_invocation($core,$call,$name,$void,$sub,! $lexical, $sref, @argv);
816 push @out, $class->_one_invocation($core,$call,$name,$void,$sub,! $lexical, $sref, @argv);
852 my ($class, $core, $call, $name, $void, $sub, $back_compat, $sref, @argv) = @_;
928 $hints = autodie::hints->get_hints_for( $sref );
934 $human_sub_name = autodie::hints->sub_fullname( $sref );
1227 my($code, $sref, $proto, $core, $call, $hints, $cache, $cache_type);
1267 $sref = \&$sub;
1279 # We return our $sref from this subroutine later
1291 if (exists($Is_fatalised_sub{$sref})) {
[all...]
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Daassign.t568 my $sref = do { my $tmp = 2; \$tmp };
569 ($sref, $fill) = (1, $$sref);
570 is ($sref, 1, "RT #130132 scalar 1");
574 $sref = \$x;
575 ($sref, $$sref) = (2, 3);
576 is ($sref, 2, "RT #130132 scalar derefffed 1");
580 $sref = \$x;
581 ($sref, $$sref) = (2);
582 is ($sref, 2, "RT #130132 scalar undef 1");
586 $sref = do { my $tmp = 2; \$tmp };
[all …]
H A Dinccode.t149 my $sref = bless( \(my $x = 1), 'FooLoader' );
150 push @INC, $sref;
158 is( $INC{'Quux2.pm'}, $sref, ' val Quux2.pm is correct in %INC' );
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder/IO/
H A DScalar.pm90 my ($self, $sref) = @_;
93 defined($sref) or do {my $s = ''; $sref = \$s};
94 (ref($sref) eq "SCALAR") or croak "open() needs a ref to a scalar";
98 *$self->{SR} = $sref; ### scalar reference
542 sub sref { *{shift()}->{SR} } subroutine
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBInstructionList.cpp141 bool SBInstructionList::GetDescription(Stream &sref) { in GetDescription() argument
168 inst->Dump(&sref, max_opcode_byte_size, true, false, in GetDescription()
171 sref.EOL(); in GetDescription()
/openbsd-src/gnu/usr.bin/perl/dist/Storable/t/
H A Dst-dump.pl86 my ($sref) = @_;
87 my $scalar = $$sref;
/openbsd-src/gnu/usr.bin/perl/dist/threads-shared/t/
H A Dblessed.t43 my $sref = \do{ my $x };
44 share($sref);
45 $sobj = $sref;
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptionArgParser.cpp155 llvm::StringRef sref = s; in ToAddress() local
223 if (g_symbol_plus_offset_regex.Execute(sref, &matches)) { in ToAddress()
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/lib/Pod/
H A DUsage.pm268 my $sref = $self->{USAGE_SELECT};
274 push(@$sref, $cs);
/openbsd-src/gnu/usr.bin/perl/
H A Dsv.c3889 SV * const sref = (SV *)GvAV((const GV *)dsv); in Perl_gv_setref()
3890 if (SvSMAGICAL(sref) && (mg = mg_find(sref, PERL_MAGIC_isa))) { in Perl_gv_setref()
3900 else sv_magic(sref, dsv, PERL_MAGIC_isa, NULL, 0); in Perl_gv_setref()
3928 SV * const sref = SvRV(ssv); in Perl_gv_setref()
3933 const U32 stype = SvTYPE(sref); in Perl_gv_setref()
3968 /*if (GvCVGEN(dsv) && (GvCV(dsv) != (const CV *)sref || GvCVGEN(dsv))) {*/ in Perl_gv_setref()
3995 if (stype == SVt_PVCV && (*location != sref || GvCVGEN(dsv))) { in Perl_gv_setref()
4005 CvCONST((const CV *)sref) in Perl_gv_setref()
4006 ? cv_const_sv_or_av((const CV *)sref) in Perl_gv_setref()
3827 SV * const sref = (SV *)GvAV((const GV *)dsv); S_glob_assign_glob() local
3866 SV * const sref = SvRV(ssv); Perl_gv_setref() local
[all...]
/openbsd-src/gnu/usr.bin/perl/t/comp/
H A Dproto.t619 sreftest my $sref, $i++;
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectType.cpp74 SynthAddOptions(bool sptr, bool sref, bool casc, in SynthAddOptions() argument
76 : m_skip_pointers(sptr), m_skip_references(sref), m_cascade(casc), in SynthAddOptions()
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlref.pod744 $sref->$*; # same as ${ $sref }
H A Dperl5200delta.pod75 $sref->$*; # same as ${ $sref } # interpolates