HomeSort by relevance Sort by last modified time
    Searched refs:output_file (Results 26 - 50 of 229) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/build/scripts/
xxd.py 45 with open(output_filename, 'w') as output_file:
46 output_file.write(const_declaration)
  /external/llvm/utils/
test_debuginfo.pl 29 my $output_file = "$output_dir/$input_filename.gdb.output";
69 system("$my_debugger $debugger_options $debugger_script_file $executable_file > $output_file 2>&1");
72 system("FileCheck", "-input-file", "$output_file", "$testcase_file");
75 system("cat", "$output_file");
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
utils.cc 76 FILE* output_file = NULL; local
78 fopen_s(&output_file, font_path, "wb");
80 output_file = fopen(font_path, "wb");
82 if (output_file == reinterpret_cast<FILE*>(NULL))
85 fwrite(&(output_stream.Get()[i]), 1, 1, output_file);
87 fflush(output_file);
88 fclose(output_file);
  /external/sfntly/cpp/src/sample/subtly/
utils.cc 76 FILE* output_file = NULL; local
78 fopen_s(&output_file, font_path, "wb");
80 output_file = fopen(font_path, "wb");
82 if (output_file == reinterpret_cast<FILE*>(NULL))
85 fwrite(&(output_stream.Get()[i]), 1, 1, output_file);
87 fflush(output_file);
88 fclose(output_file);
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup.cc 76 base::FilePath output_file; local
77 PathService::Get(base::DIR_SOURCE_ROOT, &output_file);
78 output_file = output_file.Append(FILE_PATH_LITERAL("net"))
85 net::tld_cleanup::NormalizeFile(input_file, output_file);
  /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...]
  /external/qemu/distrib/jpeg-6b/
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...]
  /external/chromium_org/chrome/tools/build/
appid.py 26 ofp = open(opts.output_file, 'r')
33 open(opts.output_file, 'w').write(contents)
39 parser.add_option('-o', '--output_file',
44 if opts.appid is None or not opts.output_file:
  /external/chromium_org/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/qemu/distrib/libsparse/src/
output_file.c 33 #include "output_file.h"
63 int (*open)(struct output_file *, int fd);
64 int (*skip)(struct output_file *, int64_t);
65 int (*pad)(struct output_file *, int64_t);
66 int (*write)(struct output_file *, void *, int);
67 void (*close)(struct output_file *);
71 int (*write_data_chunk)(struct output_file *out, unsigned int len,
73 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
76 int (*write_end_chunk)(struct output_file *out)
79 struct output_file { struct
    [all...]
  /system/core/libsparse/
output_file.c 33 #include "output_file.h"
63 int (*open)(struct output_file *, int fd);
64 int (*skip)(struct output_file *, int64_t);
65 int (*pad)(struct output_file *, int64_t);
66 int (*write)(struct output_file *, void *, int);
67 void (*close)(struct output_file *);
71 int (*write_data_chunk)(struct output_file *out, unsigned int len,
73 int (*write_fill_chunk)(struct output_file *out, unsigned int len,
75 int (*write_skip_chunk)(struct output_file *out, int64_t len);
76 int (*write_end_chunk)(struct output_file *out)
79 struct output_file { struct
    [all...]
  /external/chromium_org/third_party/webrtc/tools/barcode_tools/
yuv_cropper.py 15 def _crop_one_frame(yuv_file, output_file, component_sizes):
23 output_file(file): The opened (for binary writing) file.
43 output_file.write(yuv_plane)
68 output_file = open(output_file_name, 'wb')
72 data_left = _crop_one_frame(yuv_file, output_file, component_sizes)
75 output_file.close()
95 parser.add_option('--output_file', type='string', default='output.yuv',
119 crop_frames(options.yuv_file, options.output_file, options.width,
  /external/chromium_org/chrome/installer/util/
lzma_util.h 26 std::wstring* output_file);
40 std::wstring* output_file);
  /external/chromium_org/tools/telemetry/telemetry/results/
html_page_measurement_results_unittest.py 38 output_file = StringIOFile()
42 output_file, 'test_name', False, False, 'browser_type')
95 output_file.seek(0)
97 output_file, 'test_name', False, False, 'browser_type')
185 last_output_len = len(output_file.getvalue())
188 output_file.seek(0)
190 output_file, 'test_name', True, False, 'browser_type')
240 self.assertTrue(len(output_file.getvalue()) < last_output_len)
results_options.py 31 dest='output_file',
52 if options.output_format == 'html' and not options.output_file:
53 options.output_file = os.path.join(util.GetBaseDir(), 'results.html')
55 if hasattr(options, 'output_file') and options.output_file:
56 output_file = os.path.expanduser(options.output_file)
57 open(output_file, 'a').close() # Create file if it doesn't exist.
58 output_stream = open(output_file, 'r+')
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subsetter/
subset_util.cc 92 FILE* output_file = fopen(output_file_path, "wb"); local
93 fwrite(output_stream.Get(), 1, output_stream.Size(), output_file);
94 fflush(output_file);
95 fclose(output_file);
  /external/sfntly/cpp/src/sample/subsetter/
subset_util.cc 92 FILE* output_file = fopen(output_file_path, "wb"); local
93 fwrite(output_stream.Get(), 1, output_stream.Size(), output_file);
94 fflush(output_file);
95 fclose(output_file);
  /external/chromium_org/third_party/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 66 FILE* output_file = NULL; local
68 fopen_s(&output_file, output_file_path, "wb");
70 output_file = fopen(output_file_path, "wb");
72 if (output_file) {
73 byte_count = fwrite(output_buffer, 1, buffer_length, output_file);
74 fflush(output_file);
75 fclose(output_file);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_font_utils.cc 87 FILE* output_file = NULL; local
89 fopen_s(&output_file, file_path, "wb");
91 output_file = fopen(file_path, "wb");
93 EXPECT_NE(output_file, reinterpret_cast<FILE*>(NULL));
94 fwrite(output_stream->Get(), 1, output_stream->Size(), output_file);
95 fflush(output_file);
96 fclose(output_file);
  /external/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 66 FILE* output_file = NULL; local
68 fopen_s(&output_file, output_file_path, "wb");
70 output_file = fopen(output_file_path, "wb");
72 if (output_file) {
73 byte_count = fwrite(output_buffer, 1, buffer_length, output_file);
74 fflush(output_file);
75 fclose(output_file);
  /external/sfntly/cpp/src/test/
test_font_utils.cc 87 FILE* output_file = NULL; local
89 fopen_s(&output_file, file_path, "wb");
91 output_file = fopen(file_path, "wb");
93 EXPECT_NE(output_file, reinterpret_cast<FILE*>(NULL));
94 fwrite(output_stream->Get(), 1, output_stream->Size(), output_file);
95 fflush(output_file);
96 fclose(output_file);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 140 cache_files = [os.path.join(output_directory, output_file)
141 for output_file in os.listdir(output_directory)
142 if (output_file in ('lextab.py', # PLY lex
145 output_file.endswith('.cache'))] # Jinja
171 file_pairs = [(os.path.join(reference_directory, output_file),
172 os.path.join(output_directory, output_file))
173 for output_file in os.listdir(output_directory)]
180 excess_files = [output_file
181 for output_file in os.listdir(reference_directory)
182 if output_file not in generated_files
    [all...]
  /external/eigen/bench/btl/data/
regularize.cxx 77 ofstream output_file (filename.c_str(),ios::out) ;
83 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
88 output_file << endl ;
98 output_file << tab_sizes[i] << " " << tab_mflops[i] << endl ;
103 output_file.close();
  /external/chromium_org/testing/gtest/test/
gtest-options_test.cc 97 const std::string& output_file = local
100 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
102 EXPECT_EQ(expected_output_file, output_file.c_str());
172 const std::string& output_file = local
175 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
177 EXPECT_EQ(expected_output_file, output_file.c_str());
203 const std::string& output_file = local
207 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
209 EXPECT_EQ(expected_output_file, output_file.c_str());

Completed in 2067 milliseconds

12 3 4 5 6 7 8 910