Home
last modified time | relevance | path

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

/ndk/sources/third_party/googletest/googletest/test/
Dgtest-options_test.cc97 const std::string& output_file = in TEST() local
100 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); in TEST()
102 EXPECT_EQ(expected_output_file, output_file.c_str()); in TEST()
172 const std::string& output_file = in TEST_F() local
175 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); in TEST_F()
177 EXPECT_EQ(expected_output_file, output_file.c_str()); in TEST_F()
203 const std::string& output_file = in TEST_F() local
207 EXPECT_STRCASEEQ(expected_output_file.c_str(), output_file.c_str()); in TEST_F()
209 EXPECT_EQ(expected_output_file, output_file.c_str()); in TEST_F()
Dgtest_xml_output_unittest.py196 output_file = os.path.join(gtest_test_utils.GetTempDir(),
201 os.remove(output_file)
211 self.assert_(os.path.isfile(output_file))
/ndk/sources/host-tools/sed-4.2.1/sed/
Dexecute.c155 static struct output output_file; variable
628 output_missing_newline(&output_file); in dump_append_queue()
632 ck_fwrite(p->text, 1, p->textlen, output_file.fp); in dump_append_queue()
648 ck_fwrite(buf, 1, cnt, output_file.fp); in dump_append_queue()
654 flush_output(output_file.fp); in dump_append_queue()
770 output_file.fp = ck_mkstemp (&input->out_file_name, tmpdir, "sed");
771 output_file.missing_newline = false;
782 if (!output_file.fp)
786 output_file.fp = stdout;
800 if (in_place_extension && output_file.fp != NULL)
[all …]
Dfmt.c208 fmt (const char *line, const char *line_end, int max_length, FILE *output_file) in fmt() argument
212 outfile = output_file; in fmt()
Dsed.h210 extern void fmt P_ ((const char *line, const char *line_end, int max_length, FILE *output_file));
/ndk/docs/tools/
Dndk-markdown-substitutions.py164 def process(input_file, output_file): argument
177 output_file.write(line)
/ndk/sources/third_party/googletest/googletest/src/
Dgtest.cc2988 explicit XmlUnitTestResultPrinter(const char* output_file);
3059 XmlUnitTestResultPrinter::XmlUnitTestResultPrinter(const char* output_file) in XmlUnitTestResultPrinter() argument
3060 : output_file_(output_file) { in XmlUnitTestResultPrinter()
3072 FilePath output_file(output_file_); in OnTestIterationEnd() local
3073 FilePath output_dir(output_file.RemoveFileName()); in OnTestIterationEnd()
/ndk/sources/host-tools/sed-4.2.1/
DChangeLog730 * sed/execute.c (output_file): Is now struct output; users adjusted