Home
last modified time | relevance | path

Searched refs:prints (Results 1 – 25 of 275) sorted by relevance

1234567891011

/openbsd/usr.bin/sed/TEST/
H A Dsed.test105 echo SunOS sed prints only with -n
112 echo SunOS sed prints only with -n
127 echo SunOS sed prints only with -n
133 echo SunOS sed prints only with -n
139 echo SunOS sed prints only with -n
145 echo SunOS sed prints only with -n
154 echo SunOS sed prints only with -n
160 echo SunOS sed prints only with -n
166 echo SunOS sed prints only with -n
178 echo SunOS sed prints only with -n
/openbsd/gnu/usr.bin/perl/dist/Module-CoreList/
H A DREADME11 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
13 print Module::CoreList->first_release('File::Spec'); # prints 5.00503
14 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001
17 # prints "5.005, 5.00503, 5.00504"
/openbsd/gnu/usr.bin/perl/cpan/Encode/bin/
H A Dunidump156 -h prints this message.
159 -v prints the duplicate line as is. Without this option,
162 -p prints in perl literals that you can copy and paste directly
164 -P prints in perl executable format!
165 -u prints a bunch of "Uxxxx,". Handy when you want to pass your
172 -H nline prints separater for each nlines of output.
/openbsd/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_flags.inc24 "If set, prints MemProf exit stats even after program terminates "
28 "If set, prints thread creation stacks for the threads involved in the "
39 "If set, prints the heap profile in text format. Else use the raw binary serialization format.")
41 … "If set, prints memory profile in a terse format. Only applicable if print_text = true.")
/openbsd/gnu/usr.bin/perl/lib/
H A DCORE.pod11 print hex("0x50"),"\n"; # prints 1
12 print CORE::hex("0x50"),"\n"; # prints 80
13 CORE::say "yes"; # prints yes
79 print hex("0x50"),"\n"; # prints 1
84 print CORE::hex("0x50"),"\n"; # prints 80
/openbsd/regress/usr.bin/mandoc/man/MR/
H A Dbasic.out_ascii7 empty: () prints empty name and parentheses
9 single argument: name() prints empty parentheses
/openbsd/usr.bin/rs/
H A Drs.c92 void prints(struct entry *, int);
198 prints(ep + j, (j - i) / orows); in putfile()
206 prints(ep++, j); in putfile()
214 prints(struct entry *ep, int col) in prints() function
/openbsd/gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/
H A DCoreList.pod9 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
12 # prints 5.00405
15 # prints 5.005
18 # prints 5.006001
25 # prints 'Data::Dumper'
28 # prints 'Test::Harness::Assert, Test::Harness::Straps'
31 # prints "5.005, 5.00503, 5.00504"
/openbsd/gnu/llvm/llvm/bindings/ocaml/analysis/
H A Dllvm_analysis.mli23 (** [verify_module m] returns if the module [m] is valid, but prints a
29 (** [verify_function f] returns if the function [f] is valid, but prints a
/openbsd/bin/ksh/
H A DNOTES32 - `echo foo | read bar; echo $bar' prints foo in at&t ksh, nothing
37 prints the prompt and everything is fine again. Problem (often
51 - TMOUT: at&t prints warning, then waits another 60 seconds. If on screwed
53 prints a message and exits. (Also, in at&t ksh, setting TMOUT has no
108 prints an error and then prints "still here", similarly for
125 - `set -o nounset; unset foo; echo ${#foo}`: at&t ksh prints 0; pdksh
161 - in at&t ksh, "eval `false`; echo $?" prints 1, pdksh prints 0 (which
191 prints "<>" in at&t ksh, "<::>" in pdksh.
/openbsd/gnu/llvm/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/
H A Dfail_with_control_chars.txt1 # Run a command that fails and prints control characters on stdout.
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Builder/
H A Dno_header.t10 # STDOUT must be unbuffered else our prints might come out after
/openbsd/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-size.rst14 :program:`llvm-size` is a tool that prints size information for binary files.
17 The tool prints size information for each ``input`` specified. If no input is
18 specified, the program prints size information for ``a.out``. If "``-``" is
H A Dllvm-link.rst39 If specified, :program:`llvm-link` prints a human-readable version of the
H A Dllvm-cxxfilt.rst16 prints their demangled form on the standard output stream. If a name cannot be
/openbsd/regress/sys/arch/amd64/fpu/
H A DREADME1 The OpenBSD test regress/lib/libm/fenv prints strange values from
/openbsd/gnu/llvm/llvm/docs/
H A DCMakePrimer.rst251 # prints:
260 # prints:
268 # prints:
282 # prints:
291 # prints:
299 # prints:
392 # prints:
/openbsd/regress/bin/ksh/
H A Dinteger.t155 (ksh93 fails - prints 10#20 - go figure)
199 (ksh93 fails this test - prints 0)
/openbsd/gnu/usr.bin/perl/cpan/version/lib/version/
H A DInternals.pod375 print $Foo::VERSION; # prints 1.2
377 print $Bar::VERSION; # prints 1.003005
380 print $@; # prints "foo version 10 required..."
382 print $@; # prints "foo version 1.3.5 required..."
385 print $@; # prints "bar version 1.3.6 required..."
387 print $@; # prints "bar version 1.004 required..."
547 print $ver->normal; # prints as v1.2.3.4
550 print $nver->normal; # prints as v1.2.0
551 print $nver->stringify; # prints as 1.002,
575 print $ver->numify; # prints 1.002003004
[all …]
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlintro.pod148 print 'Hello, $name\n'; # prints $name\n literally
194 print; # prints contents of $_ by default
206 print $animals[0]; # prints "camel"
207 print $animals[1]; # prints "llama"
212 print $mixed[$#mixed]; # last element, prints 1.23
327 print $x; # prints "foo"
328 print $y; # prints "bar"
330 print $x; # prints "foo"
331 print $y; # prints nothing; $y has fallen out of scope
609 # This loop reads from STDIN, and prints non-blank lines:
/openbsd/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_flags.inc38 "If set, prints some debugging information and does additional checks.")
103 "If set, prints ASan exit stats even after program terminates "
107 "If set, prints thread creation stacks for the threads involved in the "
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dgdb.gdb31 Takes one argument, the value to print, and prints all the values which
/openbsd/gnu/llvm/llvm/docs/TableGen/
H A DBackGuide.rst651 The ``run`` function is passed a ``raw_ostream`` to which it prints the
671 The helper function ``emitSourceFileHeader()`` prints the header comment
684 * ``PrintWarning`` prints a message tagged as a warning.
686 * ``PrintError`` prints a message tagged as an error.
688 * ``PrintFatalError`` prints a message tagged as an error and then terminates.
690 * ``PrintNote`` prints a note. It is often used after one of the previous
693 * ``PrintFatalNote`` prints a note and then terminates.
725 that prints all the classes and records defined in the source files. This is
765 that prints all the global variables, classes, and records defined in the
H A Dindex.rst83 The default backend prints out all of the records. There is also a general
95 With no other arguments, `llvm-tblgen` parses the specified file and prints out all
97 various definitions expand to fully. Running this on the ``X86.td`` file prints
276 Direct output can be used if the backend already prints a table in C format
/openbsd/gnu/usr.bin/gcc/contrib/
H A Dtest_installed68 --help prints this page

1234567891011