HomeSort by relevance Sort by last modified time
    Searched full:outfile (Results 1 - 25 of 704) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/third_party/harfbuzz/contrib/tables/
grapheme-break-parse.py 20 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_GraphemeClass klass;
    [all...]
combining-class-parse.py 10 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, '};\n
    [all...]
category-parse.py 45 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_CharCategory category;
    [all...]
scripts-parse.py 48 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_Script script;
    [all...]
mirroring-parse.py 11 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, 'static const struct mirroring_property mirroring_properties[] = {
    [all...]
  /external/e2fsprogs/lib/ss/
ct_c.awk 4 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/e2fsprogs/lib/et/
et_c.awk 3 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 "#define N_(a) a" > outfile
133 print "" > outfile
    [all...]
  /external/chromium_org/chrome/tools/build/linux/
sed.sh 8 # sed -e A -e B infile > outfile
12 outfile="$2"
15 sed "$@" "$infile" > "$outfile"
  /external/chromium_org/tools/gyp/test/restat/src/
create_intermediate.py 14 outfile = sys.argv[1] variable
15 if os.path.exists(outfile):
17 open(outfile, "wb").close()
  /external/chromium_org/tools/gyp/test/actions/generated-header/
action.py 10 outfile = sys.argv[1] variable
11 open(outfile, 'w').write('const char kFoo[] = "%s";' % sys.argv[2])
  /external/chromium_org/tools/gyp/test/win/batch-file-action/
batch-file-action.gyp 14 'outputs': ['outfile'],
15 'action': ['somecmd.bat', 'infile', 'outfile'],
  /external/libpcap/msdos/
bin2c.c 18 FILE *outFile = stdout;
28 fprintf (outFile,
37 fputs ("\n ", outFile);
38 fprintf (outFile, "0x%02X,", ch);
40 fputc ('\n', outFile);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
tool.py 19 outfile = sys.stdout
22 outfile = sys.stdout
25 outfile = open(sys.argv[2], 'wb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
33 with outfile:
34 json.dump(obj, outfile, sort_keys=True,
36 outfile.write('\n')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
tool.py 19 outfile = sys.stdout
22 outfile = sys.stdout
25 outfile = open(sys.argv[2], 'wb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
33 with outfile:
34 json.dump(obj, outfile, sort_keys=True,
36 outfile.write('\n')
  /external/jpeg/
ckconfig.c 294 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, "#undef HAVE_UNSIGNED_SHORT\n")
    [all...]
  /external/qemu/distrib/jpeg-6b/
ckconfig.c 294 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, "#undef HAVE_UNSIGNED_SHORT\n")
    [all...]
  /development/tools/yuv420sp2rgb/
cmdline.h 7 char **outfile,
  /external/chromium_org/build/linux/
dump_app_syms 27 OUTFILE="$4"
30 if [ ! -e "$OUTFILE" -o "$INFILE" -nt "$OUTFILE" ]; then
31 "$DUMPSYMS" -r "$INFILE" > "$OUTFILE"
  /external/bzip2/
format.pl 36 #my $outfile = 'fmt-manual.xml';
37 my $outfile = shift;
38 #print "Infile: $infile, Outfile: $outfile\n";
39 # check we can write to outfile
40 open( OUTFILE,">$outfile" ) or
41 die "Can't output $outfile $! for writing";
47 print OUTFILE $prev;
65 print OUTFILE $curr
    [all...]
  /external/chromium_org/third_party/angle/tests/deqp_tests/
generate_deqp_tests.py 24 def GenerateTests(outFile, testNames):
28 outFile.write("#include \"deqp_tests.h\"\n\n")
31 outFile.write("TEST(deqp, " + GetCleanTestName(test) + ")\n")
32 outFile.write("{\n")
33 outFile.write(" RunDEQPTest(\"" + test + "\", GetCurrentConfig());\n")
34 outFile.write("}\n\n")
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfenc.c 16 void ivf_write_file_header(FILE *outfile,
36 fwrite(header, 1, 32, outfile);
39 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) {
45 fwrite(header, 1, 12, outfile);
48 void ivf_write_frame_size(FILE *outfile, size_t frame_size) {
52 fwrite(header, 1, 4, outfile);
  /external/chromium_org/third_party/simplejson/
tool.py 19 outfile = sys.stdout
22 outfile = sys.stdout
25 outfile = open(sys.argv[2], 'wb')
27 raise SystemExit(sys.argv[0] + " [infile [outfile]]")
34 json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True)
35 outfile.write('\n')
  /external/libvpx/libvpx/
ivfenc.c 16 void ivf_write_file_header(FILE *outfile,
36 fwrite(header, 1, 32, outfile);
39 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) {
45 fwrite(header, 1, 12, outfile);
48 void ivf_write_frame_size(FILE *outfile, size_t frame_size) {
52 fwrite(header, 1, 4, outfile);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
ivfenc.c 16 void ivf_write_file_header(FILE *outfile,
36 fwrite(header, 1, 32, outfile);
39 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) {
45 fwrite(header, 1, 12, outfile);
48 void ivf_write_frame_size(FILE *outfile, size_t frame_size) {
52 fwrite(header, 1, 4, outfile);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
summary.py 17 def report(self, morfs, outfile=None, config=None):
20 `outfile` is a file object to write the summary to. `config` is a
45 if not outfile:
46 outfile = sys.stdout
49 outfile.write(header)
50 outfile.write(rule)
64 outfile.write(fmt_coverage % args)
71 outfile.write(fmt_err % (cu.name, typ.__name__, msg))
74 outfile.write(rule)
81 outfile.write(fmt_coverage % args
    [all...]

Completed in 1542 milliseconds

1 2 3 4 5 6 7 8 91011>>