HomeSort by relevance Sort by last modified time
    Searched refs:output_file (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
generate_glslang_lexer.sh 10 output_file=$script_dir/glslang_lex.cpp
11 flex --noline --nounistd --outfile=$output_file $input_file
  /system/extras/ext4_utils/
output_file.h 20 struct output_file;
22 struct output_file *open_output_file(const char *filename, int gz, int sparse,
24 void write_data_block(struct output_file *out, u64 off, u8 *data, int len);
25 void write_fill_block(struct output_file *out, u64 off, u32 fill_val, int len);
26 void write_data_file(struct output_file *out, u64 off, const char *file,
28 void pad_output_file(struct output_file *out, u64 len);
29 void close_output_file(struct output_file *out);
output_file.c 18 #include "output_file.h"
43 int (*seek)(struct output_file *, off64_t);
44 int (*write)(struct output_file *, u8 *, int);
45 void (*close)(struct output_file *);
48 struct output_file { struct
59 static int file_seek(struct output_file *out, off64_t off)
71 static int file_write(struct output_file *out, u8 *data, int len)
86 static void file_close(struct output_file *out)
98 static int gz_file_seek(struct output_file *out, off64_t off)
110 static int gz_file_write(struct output_file *out, u8 *data, int len
    [all...]
  /external/webkit/Source/WebCore/html/parser/
create-html-entity-table 61 # Python 3, change to: print("Usage: %s -o OUTPUT_FILE INPUT_FILE" % program_name, file=sys.stderr)
62 sys.stderr.write("Usage: %s -o OUTPUT_FILE INPUT_FILE\n" % program_name)
75 output_file = open(output_path, "w") variable
77 output_file.write("""/*
114 output_file.write("const UChar %sEntityName[] = %s;" % (
118 output_file.write("""
127 output_file.write(' { %sEntityName, %s, %s },' % (
133 output_file.write("""};
136 output_file.write("const HTMLEntityTableEntry* uppercaseOffset[] = {")
138 output_file.write(offset_table_entry(index[letter])
    [all...]
  /external/gtest/test/
gtest-options_test.cc 94 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
96 _strcmpi(output_file.c_str(),
99 _strcmpi(output_file.c_str(),
102 _strcmpi(output_file.c_str(),
105 << " output_file = " << output_file;
108 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile();
114 EXPECT_TRUE(output_file ==
117 output_file ==
120 output_file =
198 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
248 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
    [all...]
  /external/protobuf/gtest/test/
gtest-options_test.cc 94 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
96 _strcmpi(output_file.c_str(),
99 _strcmpi(output_file.c_str(),
102 _strcmpi(output_file.c_str(),
105 << " output_file = " << output_file;
108 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile();
114 EXPECT_TRUE(output_file ==
117 output_file ==
120 output_file =
190 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
240 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
    [all...]
  /external/llvm/runtime/libprofile/
GCDAProfiling.c 39 static FILE *output_file = NULL; variable
42 fwrite(&i, 4, 1, output_file);
61 fwrite(s, strlen(s), 1, output_file);
62 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
114 output_file = fopen(filename, "wb");
118 fwrite("adcg*204MVLL", 12, 1, output_file);
120 fwrite("adcg*404MVLL", 12, 1, output_file);
160 fwrite("\0\0\0\1", 4, 1, output_file);
171 fwrite("\0\0\xa1\1", 4, 1, output_file);
187 fwrite("\0\0\0\0\0\0\0\0", 8, 1, output_file);
    [all...]
  /external/webkit/Source/WebCore/
make-export-file-generator 27 output_file = ARGV[1]
50 File.open(output_file, "w") do |output|
57 STDERR.puts "Wrote output to #{output_file}"
  /external/llvm/utils/
test_debuginfo.pl 24 my $output_file = "$output_dir/$input_filename.gdb.output";
52 system("$my_debugger $debugger_options $debugger_script_file $executable_file >& $output_file");
55 system("FileCheck", "-input-file", "$output_file", "$testcase_file");
  /external/webkit/Source/WebCore/inspector/
generate-inspector-idl 35 sys.stderr.write("Usage: %s -o OUTPUT_FILE INPUT_FILE\n" % program_name)
47 output_file = open(output_path, "w") variable
48 output_file.write("""/*
115 output_file.write("\n#if defined(ENABLE_%s) && ENABLE_%s" % (macro_traits[domain_name], macro_traits[domain_name]))
116 output_file.write("\n interface [Conditional=INSPECTOR] %s {" % domain_name)
136 output_file.write("\n void %s(%s);" % (command["name"], ", ".join(params)))
148 output_file.write("\n [event] void %s(%s);" % (event["name"], ", ".join(params)))
150 output_file.write("\n };")
152 output_file.write("\n#endif // ENABLE_%s" % macro_traits[domain["domain"]])
153 output_file.write("\n}\n"
    [all...]
  /external/jpeg/
wrgif.c 86 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt)
203 putc(w & 0xFF, dinfo->pub.output_file);
204 putc((w >> 8) & 0xFF, dinfo->pub.output_file);
212 putc(val, dinfo->pub.output_file);
213 putc(val, dinfo->pub.output_file);
214 putc(val, dinfo->pub.output_file);
242 putc('G', dinfo->pub.output_file);
243 putc('I', dinfo->pub.output_file);
244 putc('F', dinfo->pub.output_file);
245 putc('8', dinfo->pub.output_file);
    [all...]
wrppm.c 95 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
118 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
148 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
167 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
184 fprintf(dest->pub.output_file, "P5\n%ld %ld\n%d\n",
190 fprintf(dest->pub.output_file, "P6\n%ld %ld\n%d\n",
208 fflush(dinfo->output_file);
209 if (ferror(dinfo->output_file))
wrtarga.c 88 if (JFWRITE(dinfo->output_file, targaheader, 18) != (size_t) 18)
116 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
134 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
158 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
189 outfile = dest->pub.output_file;
214 fflush(dinfo->output_file);
215 if (ferror(dinfo->output_file))
cdjpeg.c 169 FILE * output_file = stdout; local
175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
180 return output_file;
  /external/chromium/testing/gtest/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include "%s"\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/protobuf/gtest/scripts/
fuse_gtest_files.py 117 output_file = os.path.join(output_dir, relative_path)
118 if os.path.exists(output_file):
131 parent_directory = os.path.dirname(output_file)
149 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
169 output_file.write(line)
172 output_file.close()
175 def FuseGTestAllCcToFile(gtest_root, output_file):
176 """Scans folder gtest_root to generate gtest/gtest-all.cc in output_file."""
206 output_file.write('#include <%s>\n' % (GTEST_H_OUTPUT,))
213 output_file.write(line
    [all...]
  /external/chromium/testing/gmock/scripts/
fuse_gmock_files.py 122 output_file = file(os.path.join(output_dir, GMOCK_H_OUTPUT), 'w')
150 output_file.write('#include "%s"\n' % (gtest.GTEST_H_OUTPUT,))
153 output_file.write(line)
156 output_file.close()
159 def FuseGMockAllCcToFile(gmock_root, output_file):
160 """Scans folder gmock_root to fuse gmock-all.cc into output_file."""
184 output_file.write('#include "%s"\n' % (GMOCK_H_OUTPUT,))
199 output_file.write(line)
207 output_file = file(os.path.join(output_dir, GMOCK_GTEST_ALL_CC_OUTPUT), 'w')
209 gtest.FuseGTestAllCcToFile(GetGTestRootDir(gmock_root), output_file)
    [all...]
  /external/gtest/scripts/
fuse_gtest_files.py 132 output_file = os.path.join(output_dir, relative_path)
133 if os.path.exists(output_file):
143 parent_directory = os.path.dirname(output_file)
154 output_file = file(os.path.join(output_dir, GTEST_H_OUTPUT), 'w')
174 output_file.write(line)
177 output_file.close()
183 output_file = file(os.path.join(output_dir, GTEST_ALL_CC_OUTPUT), 'w')
212 output_file.write('#include <%s>\n' % (GTEST_H_OUTPUT,))
219 output_file.write(line)
222 output_file.close(
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutputset.py 75 for output_file in self.files():
76 name_match = name_matcher.search(output_file.name())
77 actual_match = actual_matcher.search(output_file.name())
78 expected_match = expected_matcher.search(output_file.name())
81 if output_file.name().endswith('.checksum'):
82 checksum_files.append(output_file)
83 elif output_file.name().endswith('.txt'):
84 text_files.append(output_file)
85 elif output_file.name().endswith('.png'):
86 image_files.append(output_file)
    [all...]
  /external/webkit/Tools/Scripts/
run-bindings-tests 55 for output_file in os.listdir(work_directory):
56 print 'Detecting changes in %s...' % output_file
59 os.path.join(reference_directory, output_file),
60 os.path.join(work_directory, output_file)]
62 print 'Detected changes in %s (see above)' % output_file
  /external/chromium/testing/gtest/test/
gtest-options_test.cc 97 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
99 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
101 EXPECT_EQ(expected_output_file, output_file.c_str());
171 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
173 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
175 EXPECT_EQ(expected_output_file, output_file.c_str());
201 const String& output_file = UnitTestOptions::GetAbsolutePathToOutputFile(); local
204 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
206 EXPECT_EQ(expected_output_file, output_file.c_str());
  /external/webkit/Source/WebKit/chromium/scripts/
inline_js_imports.py 46 print('usage: %s input_file imports_dir output_file' % argv[0])
71 output_file = open(output_file_name, 'w')
72 output_file.write(jsmin.jsmin(output_script))
73 output_file.close()
  /external/chromium/chrome/browser/autofill/
data_driven_test.cc 54 FilePath output_file = output_directory.Append( local
59 if (ReadFile(output_file, &output_file_contents))
62 ASSERT_TRUE(WriteFile(output_file, output));
  /build/tools/
event_log_tags.py 119 def WriteOutput(output_file, data):
126 if output_file is None:
128 output_file = "<stdout>"
130 out = open(output_file, "wb")
134 print >> sys.stderr, "failed to write %s: %s" % (output_file, e)
  /external/libffi/testsuite/lib/
libffi-dg.exp 53 set output_file "[file rootname [file tail $prog]].s"
57 set output_file "[file rootname [file tail $prog]].exe"
66 set output_file "./[file rootname [file tail $prog]].exe"
69 remote_file build delete $output_file;
81 set comp_output [libffi_target_compile "$prog" "$output_file" "$compile_type" $options];
84 return [list $comp_output $output_file]

Completed in 515 milliseconds

1 2 3