Home
last modified time | relevance | path

Searched refs:dumper (Results 1 – 25 of 29) sorted by relevance

12

/openbsd/src/gnu/usr.bin/perl/dist/Data-Dumper/t/
Dterse.t15 my $dumper = Data::Dumper->new([$hash]);
16 $dumper->Terse(1);
17 $dumper->Indent(2);
18 $dumper->Useperl($useperl);
20 is $dumper->Dump, <<'WANT', "Terse(1), Indent(2), Useperl($useperl)";
27 my $dumper;
29 $dumper = Data::Dumper->new([$hash]);
30 my $dumpstr_noterse = _dumptostr($dumper);
32 $dumper = Data::Dumper->new([$hash]);
33 $dumper->Terse();
[all …]
Dindent.t16 my $dumper;
18 $dumper = Data::Dumper->new([$hash]);
19 $dumpstr{noindent} = _dumptostr($dumper);
24 $dumper = Data::Dumper->new([$hash]);
25 $dumper->Indent();
26 $dumpstr{indent_no_arg} = _dumptostr($dumper);
28 $dumper = Data::Dumper->new([$hash]);
29 $dumper->Indent(0);
30 $dumpstr{indent_0} = _dumptostr($dumper);
33 $dumper = Data::Dumper->new([$hash]);
[all …]
Dbugs.t19 my $dumper = Data::Dumper->new( [\%ENV], ['ENV'] )->Sortkeys(1);
21 $dumper->Dump;
/openbsd/src/sbin/isakmpd/
Dconf.c954 struct dumper { struct
956 struct dumper *next; argument
960 conf_report_dump(struct dumper *node) in conf_report_dump()
983 struct dumper *dumper, *dnode; in conf_report() local
985 dumper = dnode = calloc(1, sizeof *dumper); in conf_report()
986 if (!dumper) in conf_report()
1003 sizeof(struct dumper)); in conf_report()
1010 sizeof(struct dumper)); in conf_report()
1019 dnode->next = calloc(1, sizeof(struct dumper)); in conf_report()
1030 conf_report_dump(dumper); in conf_report()
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Formatter/
DTAP.pm210 … my $dumper = Data::Dumper->new([$details])->Indent(2)->Terse(1)->Pad('# ')->Useqq(1)->Sortkeys(1);
211 chomp($msg = $dumper->Dump);
399 … my $dumper = Data::Dumper->new([$details])->Indent(2)->Terse(1)->Pad('# ')->Useqq(1)->Sortkeys(1);
400 chomp($msg = $dumper->Dump);
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/
DBuilder.pm1315 my $dumper = Data::Dumper->new( [$_] );
1316 $dumper->Indent(1)->Terse(1);
1317 $dumper->Sortkeys(1) if $dumper->can("Sortkeys");
1318 $dumper->Dump;
/openbsd/src/gnu/usr.bin/perl/dist/Data-Dumper/
DChanges39 - Convert dumper.t to Test::More and
88 - Restore deparsing support in the XS dumper, on Perl 5.18 and earlier
101 - Behavior change: $dumper->Useqq(undef) is now treated as setting the
392 - Calling the C<Indent()> method on a dumper object now correctly
/openbsd/src/etc/mail/
Daliases87 # dumper:
/openbsd/src/gnu/usr.bin/perl/t/porting/
Dknown_pod_issues.dat404 dist/data-dumper/dumper.pm ? Should you be using L<...> instead of 1
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectThread.cpp2210 TraceDumper dumper(std::move(cursor_sp), in DoExecute() local
2214 dumper.DumpFunctionCalls(); in DoExecute()
2412 TraceDumper dumper(std::move(cursor_sp), in DoExecute() local
2416 m_last_id = dumper.DumpInstructions(m_options.m_count); in DoExecute()
/openbsd/src/sys/dev/pci/drm/
Ddrm_panic.c946 static void drm_panic(struct kmsg_dumper *dumper, struct kmsg_dump_detail *detail) in drm_panic() argument
948 struct drm_plane *plane = to_drm_plane(dumper); in drm_panic()
/openbsd/src/gnu/llvm/llvm/docs/CommandGuide/
Dllvm-profdata.rst279 Instruct the profile dumper to show profile counts in the text format of the
286 Instruct the profile dumper to show the top ``n`` functions with the
Dllvm-objdump.rst1 llvm-objdump - LLVM's object file dumper
Dtblgen.rst172 Generate Clang attribute text node dumper.
/openbsd/src/gnu/usr.bin/perl/
DREADME.bs2000125 lib/dumper..........FAILED tests 43, 45
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Formatter/
DTAP.t809 …my $dumper = Data::Dumper->new([{structure => 'yes'}])->Indent(2)->Terse(1)->Pad('# ')->Useqq(1)->…
810 chomp(my $struct = $dumper->Dump);
/openbsd/src/gnu/usr.bin/perl/Porting/
Ddeparse-skips.txt256 ../dist/Data-Dumper/t/dumper.t
/openbsd/src/gnu/usr.bin/perl/lib/
Dlocale.t168 my $dumper = Dumpvalue->new(
178 print STDERR $dumper->stringify($mess,1), "\n";
/openbsd/src/gnu/usr.bin/perl/ext/SDBM_File/
DREADME152 dbd.c a crude (n/s)dbm page file dumper (for conversion)
/openbsd/src/gnu/usr.bin/perl/dist/Dumpvalue/t/
Dextend-coverage.t47 like $@, qr/^usage: \$dumper->dumpValue\(value\)/,
/openbsd/src/gnu/llvm/llvm/lib/Support/Windows/
DSignals.inc403 /// dumper.
/openbsd/src/gnu/usr.bin/perl/lib/B/
DDeparse.pm5682 my $dumper = Data::Dumper->new([$$ref], ['$v']);
5683 $dumper->Purity(1)->Terse(1)->Deparse(1)->Indent(0)->Useqq(1)->Sortkeys(1);
5684 my $str = $dumper->Dump();
/openbsd/src/gnu/usr.bin/perl/pod/
Dperl58delta.pod3568 ext/Data/Dumper/t/dumper.............FAILED at test 268
3670 ../ext/Data/Dumper/t/dumper.t 357 8 2.24% 311 314 325 327
3684 The failures in dumper.t and downgrade.t are problems in the tests,
/openbsd/src/gnu/llvm/llvm/docs/
DSourceLevelDebugging.rst2077 LLVM's CodeView support. Most of them revolve around using the CodeView dumper
/openbsd/src/usr.sbin/unbound/
Daclocal.m48198 _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
8538 _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl

12