Home
last modified time | relevance | path

Searched +full:- +full:outfile (Results 1 – 25 of 690) sorted by relevance

12345678910>>...28

/third_party/cups/man/
Dmantohtml.c5 * Copyright 2007-2017 by Apple Inc.
6 * Copyright 2004-2006 by Easy Software Products.
15 #include <cups/string-private.h>
16 #include <cups/array-private.h>
40 * 'main()' - Convert a man page to HTML.
43 int /* O - Exit status */
44 main(int argc, /* I - Number of command-line args */ in main()
45 char *argv[]) /* I - Command-line arguments */ in main()
48 *outfile; /* Output file */ in main() local
54 int section = -1, /* Man page section */ in main()
[all …]
/third_party/gn/examples/rust_example/build/
DBUILD.gn4 outfile = "{{target_out_dir}}/{{crate_name}}"
5 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link…
6 description = "RUST $outfile"
7 outputs = [ outfile ]
12 outfile = "{{target_out_dir}}/{{crate_name}}.a"
13 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link…
14 description = "RUST $outfile"
15 outputs = [ outfile ]
20 outfile = "{{target_out_dir}}/lib{{crate_name}}.rlib"
21 …c --crate-name {{crate_name}} {{source}} --crate-type {{crate_type}} --emit=dep-info=$depfile,link…
[all …]
/third_party/libinput/tools/
Dmake-ptraccel-graphs.sh3 tool=`dirname $0`/../build/ptraccel-debug
6 if [[ -e '$tool' ]]; then
10 speeds="-1 -0.75 -0.5 -0.25 0 0.5 1"
12 outfile="ptraccel-linear"
14 $tool --mode=accel --dpi=1000 --filter=linear --speed=$speed > $outfile-$speed.gnuplot
18 set output "$outfile.svg"
25 fname(s)=sprintf("$outfile-%s.gnuplot", s)
30 outfile="ptraccel-low-dpi"
33 $tool --mode=accel --dpi=$dpi --filter=low-dpi > $outfile-$dpi.gnuplot
38 set output "$outfile.svg"
[all …]
/third_party/nghttp2/src/
Dapp_helper.cc2 * nghttp2 - HTTP/2 C Library
132 FILE *outfile = stdout; variable
135 void set_output(FILE *file) { outfile = file; } in set_output()
138 void print_frame_attr_indent() { fprintf(outfile, " "); } in print_frame_attr_indent()
151 fprintf(outfile, "%s%s%s: %s\n", ansi_esc("\033[1;34m"), nv->name, in print_nv()
152 ansi_escend(), nv->value); in print_nv()
168 fprintf(outfile, "%s[%3ld.%03ld]%s", ansi_esc("\033[33m"), in print_timer()
175 fprintf(outfile, "<length=%zu, flags=0x%02x, stream_id=%d>\n", hd.length, in print_frame_hd()
243 fprintf(outfile, "; %s\n", s.c_str()); in print_flags()
257 fprintf(outfile, "%s%s%s frame ", frame_name_ansi_esc(ptype), in print_frame()
[all …]
/third_party/skia/tools/skpbench/
Dsheet.py5 # Use of this source code is governed by a BSD-style license that can be
28 …https://chrome.google.com/webstore/detail/office-editing-for-docs-s/gbkeegbaiigmenfmjfclcdgdpimamg…
32 (3) Run parseskpbench.py with the --open flag.
36 __argparse.add_argument('-r', '--result',
39 __argparse.add_argument('-f', '--force',
41 __argparse.add_argument('-o', '--open',
44 __argparse.add_argument('-n', '--name',
45 default='skpbench_%s' % datetime.now().strftime('%Y-%m-%d_%H.%M.%S.csv'),
46 help="if using --open, a name for the temp file")
48 nargs='+', help="source files that contain skpbench results ('-' for stdin)")
[all …]
/third_party/skia/m133/tools/skpbench/
Dsheet.py5 # Use of this source code is governed by a BSD-style license that can be
28 …https://chrome.google.com/webstore/detail/office-editing-for-docs-s/gbkeegbaiigmenfmjfclcdgdpimamg…
32 (3) Run parseskpbench.py with the --open flag.
36 __argparse.add_argument('-r', '--result',
39 __argparse.add_argument('-f', '--force',
41 __argparse.add_argument('-o', '--open',
44 __argparse.add_argument('-n', '--name',
45 default='skpbench_%s' % datetime.now().strftime('%Y-%m-%d_%H.%M.%S.csv'),
46 help="if using --open, a name for the temp file")
48 nargs='+', help="source files that contain skpbench results ('-' for stdin)")
[all …]
/third_party/python/PCbuild/
D_freeze_module.vcxproj1 <?xml version="1.0" encoding="utf-8"?>
70 <ProjectGuid>{19C0C13F-47CA-4432-AFF3-799A296A4DDC}</ProjectGuid>
224 <ClCompile Include="..\Python\Python-ast.c" />
226 <ClCompile Include="..\Python\Python-tokenize.c" />
239 <!-- BEGIN frozen modules -->
243 <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap.h</OutFile>
248 <OutFile>$(PySourcePath)Python\frozen_modules\importlib._bootstrap_external.h</OutFile>
253 <OutFile>$(PySourcePath)Python\frozen_modules\zipimport.h</OutFile>
258 <OutFile>$(PySourcePath)Python\frozen_modules\abc.h</OutFile>
263 <OutFile>$(PySourcePath)Python\frozen_modules\codecs.h</OutFile>
[all …]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Drubygenerator.py1 #!/usr/bin/python3 -i
3 # Copyright 2013-2024 The Khronos Group Inc.
5 # SPDX-License-Identifier: Apache-2.0
20 """RubyOutputGenerator - subclass of ScriptOutputGenerator.
39 write(self.beginDict(name), file=self.outFile)
45 write(f'{enquote(key)} => {value},', file=self.outFile)
46 write(self.endDict(), file=self.outFile)
55 write('def {}'.format(name), file=self.outFile)
56 write(' @{}'.format(name), file=self.outFile)
57 write('end', file=self.outFile)
[all …]
Dpygenerator.py1 #!/usr/bin/python3 -i
3 # Copyright 2013-2024 The Khronos Group Inc.
5 # SPDX-License-Identifier: Apache-2.0
12 """PyOutputGenerator - subclass of ScriptOutputGenerator.
31 write(self.beginDict(name), file=self.outFile)
37 write(f'{enquote(key)} : {value},', file=self.outFile)
38 write(self.endDict(), file=self.outFile)
50 # Could just print(dict) but that is not human-readable
71 # human-readable and stable-ordered
72 write(self.beginDict('mapDict'), file=self.outFile)
[all …]
Djsgenerator.py1 #!/usr/bin/python3 -i
2 # Copyright 2013-2024 The Khronos Group Inc.
3 # SPDX-License-Identifier: Apache-2.0
16 """JSOutputGenerator - subclass of ScriptOutputGenerator.
38 write(self.beginDict(name), file=self.outFile)
44 write(f'{enquote(key)} : {value},', file=self.outFile)
45 write(self.endDict(), file=self.outFile)
57 # Could just print(dict) but that is not human-readable
77 write(self.beginDict('mapDict'), file=self.outFile)
81 file=self.outFile)
[all …]
/third_party/bzip2/
Dformat.pl1 #!/usr/bin/perl -w
3 # ------------------------------------------------------------------
5 # lossless, block-sorting data compression.
8 # Copyright (C) 1996-2019 Julian Seward <jseward@acm.org>
15 # ------------------------------------------------------------------
27 unless -f $infile;
29 if (! -r $infile) {
36 #my $outfile = 'fmt-manual.xml';
37 my $outfile = shift;
38 #print "Infile: $infile, Outfile: $outfile\n";
[all …]
/third_party/ffmpeg/tools/
Dgraph2dot.c2 * Copyright (c) 2008-2010 Stefano Sabatini
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
43 "-i INFILE set INFILE as input file, stdin if omitted\n" in usage()
44 "-o OUTFILE set OUTFILE as output file, stdout if omitted\n" in usage()
45 "-h print this help\n"); in usage()
53 static void print_digraph(FILE *outfile, AVFilterGraph *graph) in print_digraph() argument
57 fprintf(outfile, "digraph G {\n"); in print_digraph()
58 fprintf(outfile, "node [shape=box]\n"); in print_digraph()
59 fprintf(outfile, "rankdir=LR\n"); in print_digraph()
61 for (i = 0; i < graph->nb_filters; i++) { in print_digraph()
[all …]
/third_party/python/Programs/
D_freeze_module.py15 header = "/* Auto-generated by Programs/_freeze_module.py */"
18 def read_text(inpath: str) -> bytes:
23 def compile_and_marshal(name: str, text: bytes) -> bytes:
30 def get_varname(name: str, prefix: str) -> str:
34 def write_code(outfile, marshalled: bytes, varname: str) -> None: argument
37 outfile.write(f"const unsigned char {varname}[] = {{\n")
40 outfile.write(" ")
41 outfile.write(",".join(str(i) for i in marshalled[n : n + 16]))
42 outfile.write(",\n")
43 outfile.write("};\n")
[all …]
/third_party/skia/m133/third_party/externals/icu/source/test/testdata/
DBUILDRULES.py58 # The -q option is there on purpose, so we don't see it normally.
59 # TODO: Use option -k?
64 output_files = [OutFile("%s.res" % bn) for bn in basenames],
66 args = "-q -i {LIBRARY_DATA_DIR} -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}",
75 output_files = [OutFile("encoded.res")],
77 args = "-s {IN_DIR} -eUTF-16BE -d {OUT_DIR} {INPUT_FILES[0]}",
86 args = "-s {IN_DIR} -d {TMP_DIR} {INPUT_FILES[0]}",
93 output_files = [OutFile("filtertest.res")],
95 args = "-s {IN_DIR} -d {OUT_DIR} -i {OUT_DIR} "
96 "--filterDir {IN_DIR}/filters filtertest.txt",
[all …]
/third_party/icu/icu4c/source/test/testdata/
DBUILDRULES.py58 # The -q option is there on purpose, so we don't see it normally.
59 # TODO: Use option -k?
64 output_files = [OutFile("%s.res" % bn) for bn in basenames],
66 args = "-q -s {IN_DIR} -d {OUT_DIR} {INPUT_FILE}",
75 output_files = [OutFile("encoded.res")],
77 args = "-s {IN_DIR} -eUTF-16BE -d {OUT_DIR} {INPUT_FILES[0]}",
86 args = "-s {IN_DIR} -d {TMP_DIR} {INPUT_FILES[0]}",
93 output_files = [OutFile("filtertest.res")],
95 args = "-s {IN_DIR} -d {OUT_DIR} -i {OUT_DIR} "
96 "--filterDir {IN_DIR}/filters filtertest.txt",
[all …]
/third_party/skia/third_party/externals/libjpeg-turbo/
Dtjbenchtest.java.in3 set -u
4 set -e
11 if [ -d $OUTDIR ]; then
12 rm -rf $OUTDIR
24 OUTDIR=`mktemp -d /tmp/__tjbenchtest_java_output.XXXXXX`
27 JAVAARGS="-cp $EXEDIR/java/turbojpeg.jar -Djava.library.path=$EXEDIR"
33 if [ -d $OUTDIR ]; then
34 rm -rf $OUTDIR
36 mkdir -p $OUTDIR
38 while [ $# -gt 0 ]; do
[all …]
Dtjbenchtest.in3 set -u
4 set -e
11 if [ -d $OUTDIR ]; then
12 rm -rf $OUTDIR
25 OUTDIR=`mktemp -d /tmp/__tjbenchtest_output.XXXXXX`
33 if [ "$EXT" = "bmp" ]; then BMPARG=-bmp; fi
35 if [ -d $OUTDIR ]; then
36 rm -rf $OUTDIR
38 mkdir -p $OUTDIR
40 while [ $# -gt 0 ]; do
[all …]
/third_party/pcre2/pcre2/
Dperltest.sh5 # argument is -perl then the second is taken as the Perl command to use, and
6 # both are then removed. If the next argument is "-w", Perl is called with
7 # "-w", which turns on its warning mode.
10 # running UTF-8 tests, but *not* for non-utf8 tests. (The "require" would
11 # actually be OK for non-utf8-tests, but is not always installed, so this way
15 # Perl script to Perl through a pipe. If the next argument is "-utf8", a
28 if [ $# -gt 1 -a "$1" = "-perl" ] ; then
34 if [ $# -gt 0 -a "$1" = "-w" ] ; then
35 perlarg="-w"
39 if [ $# -gt 0 -a "$1" = "-utf8" ] ; then
[all …]
/third_party/skia/m133/third_party/externals/icu/source/tools/gensprep/
DfilterRFC3454.pl4 # Copyright (c) 2001-2015 International Business Machines
9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
32 #---------------------------------------------------------------------
37 "--sourcedir=s" => \$sourceDir,
38 "--destdir=s" => \$destDir,
39 "--src-filename=s" => \$srcFileName,
40 "--dest-filename=s" => \$destFileName,
41 "--A1" => \$a1,
42 "--B1" => \$b1,
43 "--B2" => \$b2,
[all …]
/third_party/skia/third_party/externals/icu/source/tools/gensprep/
DfilterRFC3454.pl4 # Copyright (c) 2001-2015 International Business Machines
9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
32 #---------------------------------------------------------------------
37 "--sourcedir=s" => \$sourceDir,
38 "--destdir=s" => \$destDir,
39 "--src-filename=s" => \$srcFileName,
40 "--dest-filename=s" => \$destFileName,
41 "--A1" => \$a1,
42 "--B1" => \$b1,
43 "--B2" => \$b2,
[all …]
/third_party/icu/icu4c/source/tools/gensprep/
DfilterRFC3454.pl4 # Copyright (c) 2001-2015 International Business Machines
9 # This tool filters the RFC-3454 txt file for StringPrep tables and creates a table
32 #---------------------------------------------------------------------
37 "--sourcedir=s" => \$sourceDir,
38 "--destdir=s" => \$destDir,
39 "--src-filename=s" => \$srcFileName,
40 "--dest-filename=s" => \$destFileName,
41 "--A1" => \$a1,
42 "--B1" => \$b1,
43 "--B2" => \$b2,
[all …]
/third_party/ltp/testcases/kernel/io/direct_io/
Ddiotest1.c26 * diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile]
56 static char outfile[LEN]; /* Output file. Default "outfile" */ variable
65 "Usage: diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile]\n"); in prg_usage()
88 strcpy(outfile, "outfile"); /* Default outfile file */ in main()
89 while ((i = getopt(argc, argv, "b:n:i:o:")) != -1) { in main()
112 strcpy(outfile, optarg); in main()
130 fd2 = SAFE_OPEN(cleanup, outfile, O_DIRECT | O_RDWR | O_CREAT, 0666); in main()
143 /* Copy infile to outfile using direct read and direct write */ in main()
157 if (filecmp(infile, outfile) != 0) { in main()
159 infile, outfile); in main()
/third_party/cups/ppdc/
Dppdmerge.cxx4 // Copyright © 2020-2024 by OpenPrinting.
5 // Copyright © 2007-2018 by Apple Inc.
6 // Copyright © 2002-2007 by Easy Software Products.
16 #include <cups/cups-private.h>
17 #include <cups/ppd-private.h>
30 // 'main()' - Main entry for the PPD merge utility.
33 int // O - Exit status
34 main(int argc, // I - Number of command-line arguments in main()
35 char *argv[]) // I - Command-line arguments in main()
45 *outfile; // Output file in main() local
[all …]
/third_party/openhitls/testcode/framework/gen_test/
Dhelper.c11 * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
59 data->len = 0; in FreeHex()
60 if (data->x != NULL) { in FreeHex()
61 free(data->x); in FreeHex()
62 data->x = NULL; in FreeHex()
72 data->len = 0; in NewHex()
73 data->x = NULL; in NewHex()
80 if (str[0] == '-') { in IsInt()
114 return -1; in ReadLine()
158 if (cur == inLen - 1) { in SplitArguments()
[all …]
/third_party/brotli/python/
Dbro.py56 # this works with CPython -- untested on other implementations
65 # (-> https://docs.python.org/3/library/sys.html#sys.stdin)
68 # (such as an `io.StringIO()` - perhaps via
82 '--version', action='version', version=brotli.version)
84 '-i',
85 '--input',
92 '-o',
93 '--output',
96 dest='outfile',
100 '-f',
[all …]

12345678910>>...28