Searched refs:outfile (Results 1 - 25 of 110) sorted by relevance

12345

/external/harfbuzz/contrib/tables/
H A Dcategory-parse.py45 def main(infile, outfile):
49 print >>outfile, '// Generated from Unicode script tables\n'
50 print >>outfile, '#ifndef CATEGORY_PROPERTIES_H_'
51 print >>outfile, '#define CATEGORY_PROPERTIES_H_\n'
52 print >>outfile, '#include <stdint.h>'
53 print >>outfile, '#include "harfbuzz-external.h"\n'
54 print >>outfile, 'struct category_property {'
55 print >>outfile, ' uint32_t range_start;'
56 print >>outfile, ' uint32_t range_end;'
57 print >>outfile, ' HB_CharCategor
[all...]
H A Dgrapheme-break-parse.py20 def main(infile, outfile):
24 print >>outfile, '// Generated from Unicode Grapheme break tables\n'
25 print >>outfile, '#ifndef GRAPHEME_BREAK_PROPERTY_H_'
26 print >>outfile, '#define GRAPHEME_BREAK_PROPERTY_H_\n'
27 print >>outfile, '#include <stdint.h>'
28 print >>outfile, '#include "harfbuzz-external.h"\n'
29 print >>outfile, 'struct grapheme_break_property {'
30 print >>outfile, ' uint32_t range_start;'
31 print >>outfile, ' uint32_t range_end;'
32 print >>outfile, ' HB_GraphemeClas
[all...]
H A Dcombining-class-parse.py10 def main(infile, outfile):
14 print >>outfile, '// Generated from Unicode tables\n'
15 print >>outfile, '#ifndef COMBINING_PROPERTIES_H_'
16 print >>outfile, '#define COMBINING_PROPERTIES_H_\n'
17 print >>outfile, '#include <stdint.h>'
18 print >>outfile, 'struct combining_property {'
19 print >>outfile, ' uint32_t range_start;'
20 print >>outfile, ' uint32_t range_end;'
21 print >>outfile, ' uint8_t klass;'
22 print >>outfile, '};\
[all...]
H A Dscripts-parse.py48 def main(infile, outfile):
54 print >>outfile, '// Generated from Unicode script tables\n'
55 print >>outfile, '#ifndef SCRIPT_PROPERTIES_H_'
56 print >>outfile, '#define SCRIPT_PROPERTIES_H_\n'
57 print >>outfile, '#include <stdint.h>'
58 print >>outfile, '#include "harfbuzz-shaper.h"\n'
59 print >>outfile, 'struct script_property {'
60 print >>outfile, ' uint32_t range_start;'
61 print >>outfile, ' uint32_t range_end;'
62 print >>outfile, ' HB_Scrip
[all...]
H A Dmirroring-parse.py11 def main(infile, outfile):
31 print >>outfile, '// Generated from Unicode Bidi Mirroring tables\n'
32 print >>outfile, '#ifndef MIRRORING_PROPERTY_H_'
33 print >>outfile, '#define MIRRORING_PROPERTY_H_\n'
34 print >>outfile, '#include <stdint.h>'
35 print >>outfile, 'struct mirroring_property {'
36 print >>outfile, ' uint32_t a;'
37 print >>outfile, ' uint32_t b;'
38 print >>outfile, '};\n'
39 print >>outfile, 'stati
[all...]
/external/e2fsprogs/lib/ss/
H A Dct_c.awk4 rootname, rootname > outfile
5 print "#include <ss/ss.h>" > outfile
6 print "" >outfile
13 printf "static char const * const ssu%05d[] = {\n", cmdnum > outfile
26 printf "%s\"%s\",\n", cmdtab, cmd > outfile
41 print " (char const *)0" > outfile
42 print "};" > outfile
43 printf "extern void %s __SS_PROTO;\n", subr > outfile
58 print "#__ERROR_IN_FILE__" > outfile
62 printf "static ss_request_entry ssu%05d[] = {\n", cmdnum+1 > outfile
[all...]
/external/jpeg/
H A Dckconfig.c294 FILE *outfile; local
297 if ((outfile = fopen("jconfig.h", "w")) == NULL) {
303 fprintf(outfile, "/* jconfig.h --- generated by ckconfig.c */\n");
304 fprintf(outfile, "/* see jconfig.doc for explanations */\n\n");
306 fprintf(outfile, "#define HAVE_PROTOTYPES\n");
308 fprintf(outfile, "#undef HAVE_PROTOTYPES\n");
311 fprintf(outfile, "#define HAVE_UNSIGNED_CHAR\n");
313 fprintf(outfile, "#undef HAVE_UNSIGNED_CHAR\n");
316 fprintf(outfile, "#define HAVE_UNSIGNED_SHORT\n");
318 fprintf(outfile, "#unde
[all...]
H A Djdatadst.c28 FILE * outfile; /* target stream */ member in struct:__anon5463
85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount)
116 fflush(dest->outfile);
118 if (ferror(dest->outfile))
130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile) argument
150 dest->outfile = outfile;
/external/e2fsprogs/lib/et/
H A Det_c.awk3 outfn = outfile
124 print "/*" > outfile
125 print " * " outfn ":" > outfile
126 print " * This file is automatically generated; please do not edit it." > outfile
127 print " */" > outfile
129 print "" > outfile
130 print "#include <stdlib.h>" > outfile
131 print "" > outfile
132 print "static const char * const text[] = {" > outfile
138 # printf "\t\t\"%s\"\n", text > outfile
[all...]
H A Det_h.awk3 outfn = outfile
128 print "/*" > outfile
129 print " * " outfn ":" > outfile
130 print " * This file is automatically generated; please do not edit it." > outfile
131 print " */" > outfile
132 print "" > outfile
133 print "#include <et/com_err.h>" > outfile
134 print "" > outfile
144 curr_sign*curr_low > outfile
147 curr_low > outfile
[all...]
/external/pcre/
H A Dperltest.pl57 $outfile = "OUTFILE";
59 else { $outfile = "STDOUT"; }
61 printf($outfile "Perl $] Regular Expressions\n\n");
70 printf $outfile "$_" if $infile ne "STDIN";
79 printf $outfile "$_" if $infile ne "STDIN";
111 printf $outfile "Error: $@";
136 printf $outfile "$_\n" if $infile ne "STDIN";
176 printf $outfile "Error: $@\n";
181 printf $outfile "No match";
183 { print $outfile (", mar
[all...]
H A Dpcretest.c180 static FILE *outfile; variable
860 FILE *f = (first_callout | callout_extra)? outfile : NULL;
904 fprintf(outfile, "%+3d ", cb->pattern_position);
905 if (cb->pattern_position > 99) fprintf(outfile, "\n ");
909 if (callout_extra) fprintf(outfile, " ");
910 else fprintf(outfile, "%3d ", cb->callout_number);
913 for (i = 0; i < pre_start; i++) fprintf(outfile, " ");
914 fprintf(outfile, "^");
918 for (i = 0; i < post_start - 1; i++) fprintf(outfile, " ");
919 fprintf(outfile, "
[all...]
/external/dropbear/
H A Ddropbearconvert.c34 const char* outfile);
63 const char* outfile; local
100 outfile = argv[4];
102 return do_convert(intype, infile, outtype, outfile);
111 const char* outfile) {
137 if (import_write(outfile, key, NULL, outtype) != 1) {
138 fprintf(stderr, "Error writing key to '%s'\n", outfile);
140 fprintf(stderr, "Wrote key to '%s'\n", outfile);
110 do_convert(int intype, const char* infile, int outtype, const char* outfile) argument
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Dgenerate_glslang_lexer.sh11 flex --noline --nounistd --outfile=$output_file $input_file
/external/libvpx/build/make/
H A Dgen_msvs_def.sh51 echo " $sym" >> ${outfile}
57 printf " %-40s DATA\n" "$sym" >> ${outfile}
67 --out=*) outfile="$optval"
76 outfile=${outfile:-/dev/stdout}
79 echo "LIBRARY ${name}" > ${outfile}
80 echo "EXPORTS" >> ${outfile}
H A Dgen_msvs_sln.sh27 --out=outfile Redirect output to a file
36 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk}
43 [ -f "${outfile}" ] && rm -f ${outfile}{,.mk}
192 $nows_sln_config: $outfile
193 ${TAB}devenv.com $outfile -build "$config"
196 $nows_sln_config: $outfile
197 ${TAB}devenv.com $outfile -build "$sln_config"
201 $nows_sln_config: $outfile
[all...]
H A Darmlink_adapter.sh23 outfile=$i
52 cmd="armlink $args --userlibpath=$libsearchpath --output=$outfile $infiles"
/external/expat/tests/
H A Dxmltest.sh39 $XMLWF -p "$file" > outfile || return $?
40 read outdata < outfile
54 $XMLWF -p -d "$OUTPUT$reldir" "$file" > outfile || return $?
55 read outdata < outfile
58 diff "$OUTPUT$reldir$file" "out/$file" > outfile
59 if [ -s outfile ] ; then
60 cp outfile "$OUTPUT$reldir$file.diff"
103 rm outfile
112 rm outfile
130 rm outfile
[all...]
/external/doclava/src/com/google/doclava/
H A DDocFile.java54 public static void writePage(String docfile, String relative, String outfile) { argument
58 * System.out.println("docfile='" + docfile + "' relative='" + relative + "'" + "' outfile='" +
59 * outfile + "'");
121 ClearPage.write(hdf, "docpage.cs", outfile);
123 if (outfile.indexOf("sdk/") != -1) {
125 if ((outfile.indexOf("index.html") != -1) && (outfile.indexOf("preview/") == -1)) {
126 ClearPage.write(hdf, "sdkpage.cs", outfile);
128 ClearPage.write(hdf, "docpage.cs", outfile);
130 } else if (outfile
[all...]
/external/srec/tools/grxmlcompile/
H A Dnetw_dump.cpp49 std::ofstream outfile; local
57 outfile.open ( fileName.c_str() );
63 outfile << arc[loc]->fromId << std::endl;
66 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << Eps << std::endl;
84 outfile << arc[loc]->fromId << separator << arc[loc]->toId << separator << inLabel.c_str() << std::endl;
90 outfile.close();
107 std::ofstream outfile; local
110 outfile.open ( fileName.c_str() );
172 outfile << arc[loc]->fromId << std::endl;
174 outfile << ar
192 std::ofstream outfile; local
272 std::ofstream outfile; local
[all...]
/external/icu4c/tools/gensprep/
H A DfilterRFC3454.pl69 $outfile = $destDir."/".$destFileName;
71 unlink($outfile);
72 $outFH = IO::File->new($outfile,"a")
73 or die "could not open the file $outfile for writing: $! \n";
95 createUnassignedTable($inFH,$outfile);
98 createMapToNothing($inFH,$outfile);
101 createCaseMapNorm($inFH,$outfile);
104 createCaseMapNoNorm($inFH,$outfile);
107 createProhibitedTable($inFH,$outfile,$line);
110 createProhibitedTable($inFH,$outfile,
[all...]
/external/libvpx/examples/
H A Dencoder_tmpl.c67 static void write_ivf_file_header(FILE *outfile, argument
88 if(fwrite(header, 1, 32, outfile));
92 static void write_ivf_frame_header(FILE *outfile, argument
106 if(fwrite(header, 1, 12, outfile));
110 FILE *infile, *outfile; local
133 if(!(outfile = fopen(argv[4], "wb")))
143 write_ivf_file_header(outfile, &cfg, 0);
184 if(!fseek(outfile, 0, SEEK_SET))
185 write_ivf_file_header(outfile, &cfg, frame_cnt-1);
186 fclose(outfile);
[all...]
/external/openssl/apps/
H A Dpkeyparam.c71 char **args, *infile = NULL, *outfile = NULL; local
106 outfile = *args;
158 if (outfile)
160 if (!(out = BIO_new_file (outfile, "w")))
163 "Can't open output file %s\n", outfile);
/external/zlib/examples/
H A Dgun.c119 int outfile; member in struct:outd
139 if (me->outfile != -1)
144 ret = (int)write(me->outfile, buf, ret);
190 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
200 int outfile, z_stream *strm)
221 outd.outfile = outfile;
370 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
373 to the output file. If outfile is -1, then the gzip stream(s) integrity is
382 local int gunpipe(z_stream *strm, int infile, int outfile) argument
199 lunpipe(unsigned have, unsigned char *next, struct ind *indp, int outfile, z_stream *strm) argument
550 int infile, outfile; local
[all...]
/external/openssl/crypto/rc4/
H A Drc4.c77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
96 outfile= *(++argv);
133 if (outfile == NULL)
137 out=fopen(outfile,"w");

Completed in 544 milliseconds

12345