Home
last modified time | relevance | path

Searched refs:program (Results 1 – 25 of 1750) sorted by relevance

12345678910>>...70

/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_program.py36 program = unittest2.TestProgram(
39 self.assertEqual(program.result, result)
41 self.assertEqual(program.verbosity, 2)
59 program = unittest2.main(
65 self.assertTrue(hasattr(program, 'result'))
120 self.program = InitialisableProgram()
121 self.program.createTests = lambda: None
127 program = self.program
130 program.msg = msg
131 program.exit = True
[all …]
H A Dtest_discovery.py219 program = object.__new__(unittest2.TestProgram)
225 program._do_discovery = do_discovery
226 program.parseArgs(['something', 'discover'])
229 program.parseArgs(['something', 'discover', 'foo', 'bar'])
239 program = object.__new__(unittest2.TestProgram)
240 program.usageExit = usageExit
244 lambda: program._do_discovery(['one', 'two', 'three', 'four']))
247 program = object.__new__(unittest2.TestProgram)
256 program._do_discovery(['-v'], Loader=Loader)
257 self.assertEqual(program.verbosity, 2)
[all …]
/openbsd-src/gnu/llvm/llvm/utils/
H A Dcheck-each-file9 program=$2
10 linker=./link-$program
11 echo "Building $program with llvm-native-gcc"
12 rm -f $program
13 gmake -e $program CC=llvm-native-gcc CXX=llvm-native-gxx
14 echo "Erasing $program and re-linking it"
15 rm -f $program
16 echo "rm -f $program" > $linker
17 gmake -n $program >> $linker
23 echo "$program appears to need a dummy __main function; adding one"
[all …]
/openbsd-src/lib/libkvm/
H A Dkvm.c93 _kvm_syserr(kd, kd->program, "pread"); in _kvm_pread()
109 _kvm_syserr(kd, kd->program, "pwrite"); in _kvm_pwrite()
121 _kvm_err(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_err() argument
126 if (program != NULL) { in _kvm_err()
127 (void)fprintf(stderr, "%s: ", program); in _kvm_err()
138 _kvm_syserr(kvm_t *kd, const char *program, const char *fmt, ...) in _kvm_syserr() argument
144 if (program != NULL) { in _kvm_syserr()
145 (void)fprintf(stderr, "%s: ", program); in _kvm_syserr()
165 _kvm_err(kd, kd->program, "%s", strerror(errno)); in _kvm_malloc()
173 _kvm_err(kd, kd->program, "%s", strerror(errno)); in _kvm_realloc()
[all …]
H A Dkvm_proc2.c143 _kvm_err(kd, kd->program, "%s: no such symbol", nl[i].n_name); in kvm_proclist()
149 _kvm_err(kd, kd->program, "cannot read time_second"); in kvm_proclist()
153 _kvm_err(kd, kd->program, "cannot read time_uptime"); in kvm_proclist()
162 _kvm_err(kd, kd->program, "can't read process at %lx", in kvm_proclist()
171 _kvm_err(kd, kd->program, "can't read ucred at %lx", in kvm_proclist()
176 _kvm_err(kd, kd->program, "can't read pgrp at %lx", in kvm_proclist()
181 _kvm_err(kd, kd->program, "can't read session at %lx", in kvm_proclist()
187 _kvm_err(kd, kd->program, "can't read tty at %lx", in kvm_proclist()
193 _kvm_err(kd, kd->program, in kvm_proclist()
204 _kvm_err(kd, kd->program, in kvm_proclist()
[all …]
H A Dkvm_file2.c154 _kvm_syserr(kd, kd->program, "kvm_getfiles"); in kvm_getfiles()
170 _kvm_syserr(kd, kd->program, in kvm_getfiles()
180 _kvm_syserr(kd, kd->program, in kvm_getfiles()
218 _kvm_err(kd, kd->program, in kvm_deadfile_byfile()
223 _kvm_err(kd, kd->program, "can't read filehead"); in kvm_deadfile_byfile()
227 _kvm_err(kd, kd->program, "can't read nfiles"); in kvm_deadfile_byfile()
241 _kvm_err(kd, kd->program, "can't read kfp"); in kvm_deadfile_byfile()
257 _kvm_err(kd, kd->program, "inconsistent nfiles"); in kvm_deadfile_byfile()
290 _kvm_err(kd, kd->program, in kvm_deadfile_byid()
295 _kvm_err(kd, kd->program, "can't read filehead"); in kvm_deadfile_byid()
[all …]
/openbsd-src/gnu/usr.bin/texinfo/doc/
H A Dhelp2man183 (my $program = $ARGV[0]) =~ s!.*/!!;
184 my $package = $program;
213 $program = $1;
219 $program = $2;
228 $program =~ s!.*/!!;
231 $opt_no_info = 1 if $program eq 'info';
234 $include{NAME} = "$program \\- $opt_name\n" if $opt_name;
237 $include{NAME} ||= "$program \\- manual page for $program $version\n";
240 my $PROGRAM = uc $program;
470 .B $program
[all …]
/openbsd-src/usr.bin/libtool/LT/
H A DProgram.pm35 my $program = $self->{outfilepath};
36 my $pfile = basename($program);
38 open(my $pw, '>', $program) or die "Cannot write $program: $!\n";
42 # $program - wrapper for $realprogram
54 echo "\$0: cannot exec $program \${1+"\$\@"}"
63 chmod 0755, $program;
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dcomp-goto-1.c45 insn_t *program; member
80 insn_t *program = env->program; in simulator_kernel() local
82 program[i].f1.offset = op_map[program[i].f1.offset] - base_addr; in simulator_kernel()
127 insn_t program[2 + 1]; variable
152 program[i] = insn; in main()
156 program[2] = insn; in main()
158 env.pc = program; in main()
159 env.program = program; in main()
/openbsd-src/gnu/llvm/clang/docs/CommandGuide/
H A Ddiagtool.rst7 :program:`diagtool` *command* [*args*]
12 :program:`diagtool` is a combination of four tools for dealing with diagnostics in :program:`clang`.
17 :program:`diagtool` is separated into several subcommands each tailored to a
31 :program:`diagtool` find-diagnostic-id *diagnostic-name*
38 :program:`diagtool` list-warnings
45 :program:`diagtool` show-enabled [*options*] *filename ...*
52 :program:`diagtool` tree [*diagnostic-group*]
/openbsd-src/gnu/usr.bin/perl/t/japh/
H A Dabigail.t184 foreach my $program (@progs) {
185 if (exists $program -> {SKIP}) {
186 chomp $program -> {SKIP};
187 skip $program -> {SKIP}, 1;
191 chomp @{$program -> {SKIP_OS}};
192 if (@{$program -> {SKIP_OS}}) {
193 if (grep {$^O eq $_} @{$program -> {SKIP_OS}}) {
199 map {s/\$datafile/$datafile/} @{$program -> {ARGS}};
200 $program -> {EXPECT} = $JaPH unless exists $program -> {EXPECT};
201 $program -> {EXPECT} =~ s/\$JaPH_s\b/$JaPH_s/g;
[all …]
/openbsd-src/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-link.rst4 .. program:: llvm-link
9 :program:`llvm-link` [*options*] *filename ...*
14 :program:`llvm-link` takes several LLVM bitcode files and links them together
23 Enable binary output on terminals. Normally, :program:`llvm-link` will refuse
25 option, :program:`llvm-link` will write raw bitcode regardless of the output
31 :program:`llvm-link` will write its output to standard output.
39 If specified, :program:`llvm-link` prints a human-readable version of the
48 Verbose mode. Print information about what :program:`llvm-link` is doing.
55 If :program:`llvm-link` succeeds, it will exit with 0. Otherwise, if an error
H A Dllvm-remarkutil.rst4 .. program:: llvm-remarkutil
9 :program:`llvm-remarkutil` [*subcommmand*] [*options*]
29 .. program:: llvm-remarkutil bitstream2yaml
31 USAGE: :program:`llvm-remarkutil` bitstream2yaml <input file> -o <output file>
43 .. program:: llvm-remarkutil yaml2bitstream
45 USAGE: :program:`llvm-remarkutil` yaml2bitstream <input file> -o <output file>
58 .. program:: llvm-remarkutil instruction-count
60 USAGE: :program:`llvm-remarkutil` instruction-count <input file> --parser=<bitstream|yaml> -o <outp…
H A Dllvm-readobj.rst4 .. program:: llvm-readobj
9 :program:`llvm-readobj` [*options*] [*input...*]
14 The :program:`llvm-readobj` tool displays low-level format-specific information
17 If ``input`` is "``-``", :program:`llvm-readobj` reads from standard
23 :program:`llvm-readelf` is an alias for the :manpage:`llvm-readobj` tool with a
25 Following is a list of differences between :program:`llvm-readelf` and
26 :program:`llvm-readobj`:
28 - :program:`llvm-readelf` uses `GNU` for the :option:`--elf-output-style` option
29 by default. :program:`llvm-readobj` uses `LLVM`.
30 - :program:`llvm-readelf` allows single-letter grouped flags (e.g.
[all …]
H A Dlldb-tblgen.rst4 .. program:: lldb-tblgen
9 :program:`lldb-tblgen` [*options*] [*filename*]
15 :program:`lldb-tblgen` is a program that translates compiler-related target
17 users of LLVM will not need to use this program. It is used only for writing
22 options common to all :program:`*-tblgen` programs.
H A Dmlir-tblgen.rst4 .. program:: mlir-tblgen
9 :program:`mlir-tblgen` [*options*] [*filename*]
15 :program:`mlir-tblgen` is a program that translates compiler-related target
17 users of LLVM will not need to use this program. It is used only for writing
22 options common to all :program:`*-tblgen` programs.
H A Dclang-tblgen.rst4 .. program:: clang-tblgen
9 :program:`clang-tblgen` [*options*] [*filename*]
15 :program:`clang-tblgen` is a program that translates compiler-related target
17 users of LLVM will not need to use this program. It is used only for writing
22 options common to all :program:`*-tblgen` programs.
H A Dllvm-tblgen.rst4 .. program:: llvm-tblgen
9 :program:`llvm-tblgen` [*options*] [*filename*]
15 :program:`llvm-tblgen` is a program that translates compiler-related target
17 users of LLVM will not need to use this program. It is used only for writing
22 options common to all :program:`*-tblgen` programs.
H A Dllvm-dwarfutil.rst4 .. program:: llvm-dwarfutil
9 :program:`llvm-dwarfutil` [*options*] *input* *output*
14 :program:`llvm-dwarfutil` is a tool to copy and manipulate debug info.
20 If "-" is specified for the input file, the input is read from the program's
22 is written to the standard output stream of the program.
71 :program:`llvm-dwarfutil` with that option equals to the
76 :program:`llvm-objcopy` --only-keep-debug in-file out-file.debug
77 :program:`llvm-objcopy` --strip-debug in-file out-file
78 :program:`llvm-objcopy` --add-gnu-debuglink=out-file.debug out-file
104 Print the version of this program.
[all …]
H A Dlli.rst4 .. program:: lli
9 :program:`lli` [*options*] [*filename*] [*program args*]
14 :program:`lli` directly executes programs in LLVM bitcode format. It takes a program
18 :program:`lli` is *not* an emulator. It will not execute IR of different architectures
21 The JIT compiler takes the same arguments as other tools, like :program:`llc`,
24 If `filename` is not specified, then :program:`lli` reads the LLVM bitcode for the
25 program from standard input.
27 The optional *args* specified on the command line are passed to the program as
35 Override the ``argv[0]`` value passed into the executing program.
48 Causes :program:`lli` to load the plugin (shared object) named *pluginfilename* and use
[all …]
H A Dllvm-opt-report.rst4 .. program:: llvm-opt-report
9 :program:`llvm-opt-report` [*options*] [input]
14 :program:`llvm-opt-report` is a tool to generate an optimization report from YAML optimization reco…
16 You need to create an input YAML optimization record file before running :program:`llvm-opt-report`.
22 Then, you create a report using the :program:`llvm-opt-report` command with the YAML optimization r…
56 Symbols printed on the left side of the program indicate what kind of optimization was performed.
66 If ``input`` is "``-``" or omitted, :program:`llvm-opt-report` reads from standard
69 If the :option:`-o` option is omitted, then :program:`llvm-opt-report` will send its output
80 Display the version of this program.
110 :program:`llvm-opt-report` returns 0 on success. Otherwise, an error message is printed
H A Dllvm-strings.rst4 .. program:: llvm-strings
9 :program:`llvm-strings` [*options*] [*input...*]
14 :program:`llvm-strings` is a tool intended as a drop-in replacement for GNU's
15 :program:`strings`, which looks for printable strings in files and writes them
20 :program:`llvm-strings` looks for strings in each ``input`` file specified.
21 Unlike GNU :program:`strings` it looks in the entire input file, regardless of
24 the program reads from the standard input stream.
44 Silently ignored. Present for GNU :program:`strings` compatibility.
111 Display the version of the :program:`llvm-strings` executable.
120 :program:`llvm-strings` exits with a non-zero exit code if there is an error.
/openbsd-src/usr.bin/file/magdir/
H A Dlisp13 #>2 search/2048 !\r Lisp/Scheme program text
16 0 search/256 (if\ Lisp/Scheme program text
17 0 search/256 (setq\ Lisp/Scheme program text
18 0 search/256 (defvar\ Lisp/Scheme program text
19 0 search/256 (defparam\ Lisp/Scheme program text
20 0 search/256 (defun\ Lisp/Scheme program text
21 0 search/256 (autoload\ Lisp/Scheme program text
22 0 search/256 (custom-set-variables\ Lisp/Scheme program text
36 0 string (SYSTEM::VERSION\040' CLISP byte-compiled Lisp program
/openbsd-src/gnu/llvm/lldb/docs/man/
H A Dlldb-server.rst6 .. program:: lldb-server
11 | :program:`lldb-server` v[ersion]
12 | :program:`lldb-server` g[dbserver] [*options*]
13 | :program:`lldb-server` p[latform] [*options*]
18 :program:`lldb-server` provides the server counterpart of the LLVM debugger.
19 The server runs and monitors the debugged program, while the user interfaces
47 | :program:`lldb-server` g[dbserver] [*options*] [[*host*]:*port*] [[--] *program* *args*...]
103 .. option:: -- program args
105 Launch a program for debugging.
107 If neither of target options are used, :program:`lldb-server` is started
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/etc/
H A Dconfigure469 -program-prefix | --program-prefix | --program-prefi | --program-pref \
470 | --program-pre | --program-pr | --program-p)
472 -program-prefix=* | --program-prefix=* | --program-prefi=* \
473 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
476 -program-suffix | --program-suffix | --program-suffi | --program-suff \
477 | --program-suf | --program-su | --program-s)
479 -program-suffix=* | --program-suffix=* | --program-suffi=* \
480 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
483 -program-transform-name | --program-transform-name \
484 | --program-transform-nam | --program-transform-na \
[all …]

12345678910>>...70