/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/ |
videoprocessor.h | 63 std::string output_filename; member in struct:webrtc::test::TestConfig
|
videoprocessor_integrationtest.cc | 161 config_.output_filename = webrtc::test::TempFilename( 196 new webrtc::test::FrameWriterImpl(config_.output_filename, 487 config_.output_filename.c_str(), 500 if (!remove(config_.output_filename.c_str())) { [all...] |
videoprocessor.cc | 29 output_filename(""),
|
/external/chromium_org/tools/grit/grit/node/ |
io.py | 97 if hasattr(self, 'output_filename'): 98 path = self.output_filename
|
/external/libvpx/libvpx/examples/ |
vp9_spatial_scalable_encoder.c | 102 const char *output_filename; member in struct:__anon4320 114 fprintf(stderr, "Usage: %s <options> input_filename output_filename\n", 263 app_input->output_filename = argv[1]; 328 writer = vpx_video_writer_open(app_input.output_filename, kContainerIVF, 331 die("Failed to open %s for writing\n", app_input.output_filename);
|
/art/runtime/ |
profiler.h | 170 static bool Start(const std::string& output_filename, const ProfilerOptions& options) 190 const std::string& output_filename, const ProfilerOptions& options);
|
profiler.cc | 328 const std::string& output_filename, const ProfilerOptions& options) { 333 CHECK(!output_filename.empty()); 344 LOG(INFO) << "Starting profiler using output file: " << output_filename 348 profiler_ = new BackgroundMethodSamplingProfiler(output_filename, options); 391 const std::string& output_filename, const ProfilerOptions& options) 392 : output_filename_(output_filename),
|
/bionic/libc/tools/zoneinfo/ |
update-tzdata.py | 89 def HttpRetrieveFile(http, path, output_filename): 91 f = open(output_filename, 'wb')
|
/external/chromium_org/third_party/lcov/bin/ |
lcov | 155 our $output_filename; # Name for file to write coverage data to 268 "output-file|o=s" => \$output_filename, 382 $to_file = ($output_filename && ($output_filename ne "-")); 389 $output_filename = "-"; 611 # TO_PACKAGE specified) or to OUTPUT_FILENAME or STDOUT. 801 if ($output_filename) 803 @param = (@param, "--output-filename", $output_filename); [all...] |
/external/chromium_org/tools/grit/grit/format/ |
html_inline.py | 376 def InlineToFile(input_filename, output_filename, grd_node): 381 to output_filename. 385 output_filename: name of file to be written to 391 with open(output_filename, 'wb') as out_file:
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
build_sdk.py | 694 def GenerateNotice(fileroot, output_filename='NOTICE', extra_files=None): 709 if not os.path.isabs(output_filename): 710 output_filename = os.path.join(fileroot, output_filename) 711 generate_notice.Generate(output_filename, fileroot, license_files) [all...] |
/external/chromium_org/tools/grit/grit/tool/ |
build.py | 263 outfiles[ix].output_filename = os.path.abspath( 267 output.output_filename = os.path.abspath(os.path.join(
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
make.py | 709 def Write(self, qualified_target, base_path, output_filename, spec, configs, 717 output_filename: output .mk file name to write 721 gyp.common.EnsureDirExists(output_filename) 723 self.fp = open(output_filename, 'w') 842 def WriteSubMake(self, output_filename, makefile_path, targets, build_dir): 849 output_filename: sub-project Makefile name to write 854 gyp.common.EnsureDirExists(output_filename) 855 self.fp = open(output_filename, 'w') 860 os.path.join(os.path.dirname(output_filename), build_dir)) [all...] |
android.py | 110 def Write(self, qualified_target, relative_target, base_path, output_filename, 119 output_filename: output .mk file name to write 125 gyp.common.EnsureDirExists(output_filename) 127 self.fp = open(output_filename, 'w') [all...] |
/art/runtime/hprof/ |
hprof.cc | 386 Hprof(const char* output_filename, int fd, bool direct_to_ddms) 387 : filename_(output_filename), [all...] |