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

1 2 3 4 5 6 78 910

  /external/chromium_org/ppapi/native_client/
chrome_main.scons 357 # Compares output_file and golden_file.
360 def CheckGoldenFile(golden_file, output_file,
363 actual = open(output_file).read()
370 if command_tester.DifferentFromGolden(actual, golden, output_file):
375 # Returns action that compares output_file and golden_file.
378 def GoldenFileCheckAction(env, output_file, golden_file,
382 return CheckGoldenFile(env.subst(golden_file), env.subst(output_file),
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives.cc 273 void FixOutputFileForComparison(const std::string& output_file,
276 webrtc::test::FrameReaderImpl frame_reader(output_file,
278 const std::string temp_file = output_file + ".fixed";
304 ASSERT_EQ(0, remove(output_file.c_str()));
305 ASSERT_EQ(0, rename(temp_file.c_str(), output_file.c_str()));
  /external/chromium_org/base/android/jni_generator/
jni_generator.py     [all...]
  /external/chromium_org/base/test/launcher/
test_launcher.cc 233 base::FilePath output_file; local
234 CHECK(base::CreateTemporaryFile(&output_file));
247 handle.Set(CreateFile(output_file.value().c_str(),
267 output_file_fd.reset(open(output_file.value().c_str(), O_RDWR));
290 CHECK(base::ReadFileToString(output_file, &output_file_contents));
292 if (!base::DeleteFile(output_file, false)) {
294 LOG(WARNING) << "Failed to delete " << output_file.AsUTF8Unsafe();
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1264 const CodeGeneratorResponse::File& output_file = response.file(i); local
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1176 const CodeGeneratorResponse::File& output_file = response.file(i); local
    [all...]
  /external/chromium_org/tools/gn/
ninja_binary_target_writer.cc 156 OutputFile output_file = helper_.GetOutputFileForSource( local
158 object_files->push_back(output_file);
161 path_output_.WriteFile(out_, output_file);
  /external/markdown/markdown/
__init__.py 453 output_file = codecs.open(output, "w", encoding=encoding)
454 output_file.write(html)
455 output_file.close()
  /external/chromium_org/tools/telemetry/telemetry/page/
page_measurement_unittest_base.py 60 options.output_file = None
page_runner.py 132 output_file = os.path.join(self.profiler_dir, page.file_safe_name)
136 output_file = util.GetSequentialFileName(output_file)
137 self.browser.StartProfiling(finder_options.profiler, output_file)
  /external/harfbuzz_ng/util/
options.cc 421 {"output-file", 0, 0, G_OPTION_ARG_STRING, &this->output_file, "Set output file-name (default: stdout)","filename"},
627 if (output_file)
628 fp = fopen (output_file, "wb");
637 g_filename_display_name (output_file), strerror (errno));
  /external/jpeg/
cdjpeg.h 62 FILE * output_file; member in struct:djpeg_dest_struct
  /external/pdfium/core/src/fxcodec/libjpeg/
cdjpeg.h 62 FXSYS_FILE * output_file; member in struct:djpeg_dest_struct
  /external/qemu/distrib/jpeg-6b/
cdjpeg.h 62 FILE * output_file; member in struct:djpeg_dest_struct
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 211 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
fmt.c 208 fmt (const char *line, const char *line_end, int max_length, FILE *output_file)
212 outfile = output_file;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/debugging/
debug-mode.rb 70 for output_file in @grammar.target_files
71 self.class.import( output_file )
  /external/chromium-trace/
systrace-legacy.py 39 parser.add_option('-o', dest='output_file', help='write HTML to FILE',
149 html_filename = options.output_file
206 print " done\n\n wrote file://%s\n" % (os.path.abspath(options.output_file))
  /external/chromium_org/remoting/webapp/
build-webapp.py 64 def processJinjaTemplate(input_file, output_file, context):
74 io.open(output_file, 'w', encoding='utf-8').write(rendered)
  /external/chromium_org/tools/
licenses.py 401 print 'usage: licenses.py credits [output_file]'
446 with open(sys.argv[2], 'w') as output_file:
447 output_file.write(template_contents)
  /external/markdown/
test-markdown.py 236 output_file = os.path.join(dir, test + ".html")
238 expected_output = codecs.open(output_file, encoding=self.encoding).read()
  /external/chromium_org/testing/gtest/scripts/
pump.py 845 output_file = file(output_file_path, 'w')
846 output_file.write('// This file was GENERATED by command:\n')
847 output_file.write('// %s %s\n' %
849 output_file.write('// DO NOT EDIT BY HAND!!!\n\n')
850 output_file.write(output_str)
851 output_file.close()
  /external/e2fsprogs/misc/
badblocks.c 91 "Usage: %s [-b block_size] [-i input_file] [-o output_file] [-svwnf]\n"
1038 char * output_file = NULL; local
1093 output_file = optarg;
1253 if (output_file && strcmp (output_file, "-") != 0)
1255 out = fopen (output_file, "w");
1260 output_file);
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
make.py     [all...]
android.py     [all...]

Completed in 2056 milliseconds

1 2 3 4 5 6 78 910