/bind-9.11.3/unit/atf-src/tools/ |
H A D | config_file.cpp | 59 tokenizer(std::istream& is, size_t curline) : argument 61 (is, true, eof_type, nl_type, text_type, curline) 81 config_reader(std::istream& is) : argument 82 atf_config_reader(is) 109 std::ifstream is(config_path.c_str()); 110 if (is) { 111 config_reader reader(is); 130 detail::atf_config_reader::atf_config_reader(std::istream& is) : argument 131 m_is(is)
|
H A D | config_file_test.cpp | 72 config_reader(std::istream& is) : argument 73 detail::atf_config_reader(is) 112 "# This is a comment on a line of its own.\n" 113 "# And this is another one.\n" 146 "var7 = \"This is a long value.\"\n" 159 "got_var(var7, This is a long value.)",
|
H A D | atffile.cpp | 69 tokenizer(std::istream& is, size_t curline) : argument 71 (is, true, eof_type, nl_type, text_type, curline) 90 detail::atf_atffile_reader::atf_atffile_reader(std::istream& is) : argument 91 m_is(is) 243 reader(std::istream& is, const tools::fs::directory& dir) : argument 244 detail::atf_atffile_reader(is), 334 std::ifstream is(filename.c_str()); 335 if (!is) 338 reader r(is, dir); 340 is [all...] |
H A D | atffile_test.cpp | 116 atffile_reader(std::istream& is) : argument 117 detail::atf_atffile_reader(is) 156 "# This is a comment on a line of its own.\n" 157 "# And this is another one.\n" 190 "conf: var7 = \"This is a long value.\"\n" 203 "got_conf(var7, This is a long value.)", 232 "prop: var7 = \"This is a long value.\"\n" 245 "got_prop(var7, This is a long value.)",
|
H A D | io_test.cpp | 59 systembuf_check_data(std::istream& is, std::size_t length) argument 63 while (is >> chr) { 102 std::istream is(&sb); 103 systembuf_check_data(is, length); 122 std::ifstream is("test_write.txt"); 123 systembuf_check_data(is, length); 124 is.close(); 297 // XXX This assumes that the pipe's buffer is big enough to accept 328 // that it is annoying. Reenable at some point if we make atf store 330 // failes), because this message is th [all...] |
H A D | parser_test.cpp | 50 const parse_error e(123, "This is the message"); 51 ATF_REQUIRE_EQ("123: This is the message", std::string(e)); 136 tokenizer(std::istream& is, bool skipws) : argument 138 (is, skipws, eof_type, nl_type, word_type) 156 tokenizer(std::istream& is, bool skipws) : argument 158 (is, skipws, eof_type, nl_type, word_type) 179 tokenizer(std::istream& is, bool skipws) : argument 181 (is, skipws, eof_type, nl_type, word_type) 200 tokenizer(std::istream& is, bool skipws) : argument 202 (is, skipw 734 header_reader(std::istream& is) argument [all...] |
H A D | reader.cpp | 93 tokenizer(std::istream& is, size_t curline) : argument 95 (is, true, eof_type, nl_type, text_type, curline) 142 impl::atf_tps_reader::atf_tps_reader(std::istream& is) : argument 143 m_is(is)
|
H A D | reader_test.cpp | 106 tps_reader(std::istream& is) : argument 107 impl::atf_tps_reader(is) 352 "tc-so: This test is meant to simulate a diff.\n" 373 "got_tc_stdout_line( This test is meant to simulate a diff.)",
|
H A D | parser.cpp | 227 tokenizer(std::istream& is, size_t curline) : argument 229 (is, true, eof_type, nl_type, text_type, curline) 303 impl::read_headers(std::istream& is, size_t curline) argument 319 header::tokenizer tkz(is, curline); 341 if (!is.good())
|
H A D | test_program_test.cpp | 146 tp_reader(std::istream& is) : argument 147 detail::atf_tp_reader(is) 195 "descr: This is the description\n" 207 "got_tc(test_case_1, {descr=This is the description, ident=test_case_1, timeout=300})", 1022 // is implemented.
|
H A D | atf-report.cpp | 84 //! This is meant to be subclassed, and each subclass can redefine any 87 //! This class is not tied to a output stream nor a file because, depending 186 //! The ticker_writer class implements a formatter that is user-friendly 188 //! read format. It is not meant to be parseable and its format can 293 // to specify the current column, which is needed because we have 585 converter(std::istream& is) : argument 586 tools::atf_report::atf_tps_reader(is) 631 "atf-report is a tool that parses the output of atf-run and "
|
H A D | test-program.cpp | 92 tokenizer(std::istream& is, size_t curline) : argument 94 (is, true, eof_type, nl_type, text_type, curline) 121 metadata_reader(std::istream& is) : argument 122 detail::atf_tp_reader(is) 217 // This leaks memory in case of a failure, but it is OK. Exiting will 409 detail::atf_tp_reader::atf_tp_reader(std::istream& is) : argument 410 m_is(is) 445 // Any non-empty value is valid. 477 // Any non-empty value is valid. 683 throw std::runtime_error("Results file is empt [all...] |