Home
last modified time | relevance | path

Searched refs:output_file (Results 1 – 9 of 9) sorted by relevance

/frameworks/rs/tests/lldb/tests/testcases/
Dtest_language_subcmds_no_debug.py98 output_file = self.get_tmp_file_path()
100 output_file,
101 ["Results written to '%s'" % output_file])
103 if os.path.isfile(output_file):
104 os.remove(output_file)
107 output_file,
108 ["Results written to '%s'" % output_file])
111 output_file,
112 ["Allocation written to file '%s'" % output_file])
115 output_file,
[all …]
Dtest_language_subcmds.py117 output_file = self.get_tmp_file_path()
119 output_file,
120 ["Results written to '%s'" % output_file])
122 if os.path.isfile(output_file):
123 os.remove(output_file)
126 output_file,
127 ["Results written to '%s'" % output_file])
130 output_file,
131 ["Allocation written to file '%s'" % output_file])
134 output_file,
[all …]
/frameworks/native/vulkan/vkjson/
Dvkjson_info.cc40 std::string output_file; member
67 options->output_file = arg2; in ParseOptions()
85 if (options->instance && options->output_file.empty()) { in ParseOptions()
90 if (!options->output_file.empty() && !options->instance && in ParseOptions()
124 std::string output_file; in Dump() local
125 if (options.output_file.empty()) { in Dump()
128 output_file.assign("/sdcard/Android/" + std::string(out_device->properties.deviceName)); in Dump()
130 output_file.assign(out_device->properties.deviceName); in Dump()
132 output_file.append(".json"); in Dump()
134 output_file = options.output_file; in Dump()
[all …]
/frameworks/compile/libbcc/tests/debuginfo/
Dtest_bcc_debuginfo.pl36 my $output_file = "$output_dir/$input_filename.gdb.output";
72 system("$debugger $debugger_options > $output_file 2>&1") ;
75 print("$debugger $debugger_options > $output_file 2>&1\n") ;
80 system("$filecheck_tool", "-input-file", "$output_file", "$testcase_file");
83 print("$debugger $debugger_options > $output_file 2>&1\n") ;
85 print "$filecheck_tool -input-file $output_file $testcase_file\n";
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/ruby/
DRakefile34 output_file = "lib/" + proto_file.sub(/\.proto$/, "_pb.rb")
35 genproto_output << output_file
36 file output_file => input_file do |file_task|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/
Dcommand_line_interface_unittest.cc1280 string output_file = in Run() local
1284 CreateTempDir(output_file); in Run()
1296 if (HasAlternateErrorSubstring(output_file + ": Permission denied")) { in Run()
1301 ExpectErrorSubstring(output_file + ": Is a directory"); in Run()
1309 string output_file = in Run() local
1313 CreateTempDir(output_file); in Run()
1320 if (HasAlternateErrorSubstring(output_file + ": Permission denied")) { in Run()
1325 ExpectErrorSubstring(output_file + ": Is a directory"); in Run()
Dcommand_line_interface.cc1588 const CodeGeneratorResponse::File& output_file = response.file(i); in GeneratePluginOutput() local
1590 if (!output_file.insertion_point().empty()) { in GeneratePluginOutput()
1596 output_file.name(), output_file.insertion_point())); in GeneratePluginOutput()
1597 } else if (!output_file.name().empty()) { in GeneratePluginOutput()
1602 current_output.reset(generator_context->Open(output_file.name())); in GeneratePluginOutput()
1613 writer.WriteString(output_file.content()); in GeneratePluginOutput()
/frameworks/base/startop/scripts/app_startup/
Danalyze_metrics.py198 with open(output_samples, "w") as output_file:
200 csv_writer = csv.writer(output_file)
345 with open(output_comparable, "w") as output_file:
347 csv_writer = csv.writer(output_file)
Dapp_startup_runner.py306 output_file = opts.output and open(opts.output, 'w') or sys.stdout
316 eval_and_save_to_csv(output_file, results)