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

1 2 3

  /external/toolchain-utils/mem_tests/
clean_data.py 21 output_file = open('clean2.csv', 'a') variable
29 output_file.write(dictionary[key])
total_mem_actual.py 23 output_file = open('raw_memory_data.csv', 'a') variable
37 output_file.write('{0},{1}\n'.format(total_diff, memory_used))
total_mem_sampled.py 20 output_file = open('memory_data.csv', 'a') variable
31 output_file.write('{0},{1}\n'.format(int(total_diff), memory_used))
mem_groups.py 26 output_file = open('groups.csv', 'a') variable
42 output_file.write(to_output)
  /external/tensorflow/tensorflow/compiler/xla/tools/
hex_floats_to_packed_literal.cc 36 string output_file = ""; local
39 tensorflow::Flag("output_file", &output_file, "converted file"),
51 if (output_file.empty()) {
52 LOG(QFATAL) << "--output_file is required";
74 output_file, content));
hlo_proto_to_json.cc 18 // --output_file=path_to_dump_output
75 string input_file, output_file; local
78 tensorflow::Flag("output_file", &output_file, "converted file"),
86 QCHECK(!output_file.empty()) << "--output_file is required";
88 xla::tools::RealMain(input_file, output_file);
  /build/make/tools/
java-event-log-tags.py 18 Usage: java-event-log-tags.py [-o output_file] <input_file> <merged_tags_file>
35 output_file = None variable
49 output_file = a variable
155 output_dir = os.path.dirname(output_file)
159 event_log_tags.WriteOutput(output_file, buffer)
merge-event-log-tags.py 18 Usage: merge-event-log-tags.py [-o output_file] [input_files...]
41 output_file = None variable
61 output_file = a variable
184 event_log_tags.WriteOutput(output_file, buffer)
  /cts/tools/selinux/
SELinuxNeverallowTestGen.py 102 output_file = sys.argv[2] variable
115 with open(output_file, 'w') as out_file:
  /external/google-breakpad/src/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/googletest/googletest/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());
178 const std::string& output_file = local
181 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
183 EXPECT_EQ(expected_output_file, output_file.c_str());
209 const std::string& output_file = local
213 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str());
215 EXPECT_EQ(expected_output_file, output_file.c_str());
  /external/libjpeg-turbo/
cdjpeg.c 132 FILE * output_file = stdout; local
138 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
143 return output_file;
  /external/protobuf/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/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/test/
chrome_subsetter.cc 52 FILE* output_file = NULL; local
54 fopen_s(&output_file, kOutputFileName, "wb");
56 output_file = fopen(kOutputFileName, "wb");
58 EXPECT_TRUE((output_file != NULL));
59 if (output_file) {
60 int byte_count = fwrite(output_buffer, 1, output_length, output_file);
62 fflush(output_file);
63 fclose(output_file);
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/v8/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());
  /external/vulkan-validation-layers/libs/vkjson/
vkjson_info.cc 40 std::string output_file; member in struct:Options
67 options->output_file = arg2;
85 if (options->instance && options->output_file.empty()) {
90 if (!options->output_file.empty() && !options->instance &&
124 std::string output_file; local
125 if (options.output_file.empty()) {
128 output_file.assign("/sdcard/Android/" + std::string(out_device->properties.deviceName));
130 output_file.assign(out_device->properties.deviceName);
132 output_file.append(".json");
134 output_file = options.output_file
154 std::cout << "Wrote file " << output_file; local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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());
  /external/webrtc/webrtc/modules/video_coding/test/
video_rtp_play.cc 46 std::string output_file = args.outputFile; local
47 if (output_file.empty())
48 output_file = webrtc::test::OutputPath() + "RtpPlay_decoded.yuv";
52 output_file, &clock, kConfigProtectionEnabled, kConfigProtectionMethod,
  /external/webrtc/webrtc/modules/video_processing/test/
deflickering_test.cc 42 const std::string output_file = local
44 FILE* deflickerFile = fopen(output_file.c_str(), "wb");
46 << "Could not open output file: " << output_file << "\n";
  /frameworks/native/vulkan/vkjson/
vkjson_info.cc 40 std::string output_file; member in struct:Options
67 options->output_file = arg2;
85 if (options->instance && options->output_file.empty()) {
90 if (!options->output_file.empty() && !options->instance &&
124 std::string output_file; local
125 if (options.output_file.empty()) {
128 output_file.assign("/sdcard/Android/" + std::string(out_device->properties.deviceName));
130 output_file.assign(out_device->properties.deviceName);
132 output_file.append(".json");
134 output_file = options.output_file
154 std::cout << "Wrote file " << output_file; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/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());
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/vkjson/
vkjson_info.cc 37 std::string output_file; member in struct:Options
64 options->output_file = arg2;
82 if (options->instance && options->output_file.empty()) {
87 if (!options->output_file.empty() && !options->instance &&
121 std::string output_file; local
122 if (options.output_file.empty()) {
124 output_file.assign(out_device->properties.deviceName);
125 output_file.append(".json");
127 output_file = options.output_file;
147 std::cout << "Wrote file " << output_file; local
    [all...]
  /system/tools/aidl/tests/
end_to_end_tests.cpp 146 const string output_file = kCppOutputPath; local
150 output_file.c_str(), nullptr
160 CheckFileContents(output_file, kExpectedCppOutput);
171 const string output_file = kCppOutputPath; local
175 output_file.c_str(), nullptr
184 CheckFileContents(output_file, kExpectedCppOutput);
192 const string output_file = kJavaOutputPath; local
198 output_file.c_str(),

Completed in 720 milliseconds

1 2 3