Searched defs:is (Results 1 - 12 of 12) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dconfig.cpp60 tokenizer(std::istream& is, size_t curline) : argument
62 (is, true, eof_type, nl_type, text_type, curline)
82 config_reader(std::istream& is) : argument
83 atf_config_reader(is)
110 std::ifstream is(config_path.c_str());
111 if (is) {
112 config_reader reader(is);
131 detail::atf_config_reader::atf_config_reader(std::istream& is) : argument
132 m_is(is)
H A Dconfig_test.cpp68 config_reader(std::istream& is) : argument
69 detail::atf_config_reader(is)
108 "# This is a comment on a line of its own.\n"
109 "# And this is another one.\n"
142 "var7 = \"This is a long value.\"\n"
155 "got_var(var7, This is a long value.)",
H A Datffile.cpp64 tokenizer(std::istream& is, size_t curline) : argument
66 (is, true, eof_type, nl_type, text_type, curline)
85 detail::atf_atffile_reader::atf_atffile_reader(std::istream& is) : argument
86 m_is(is)
238 reader(std::istream& is, const atf::fs::directory& dir) : argument
239 detail::atf_atffile_reader(is),
329 std::ifstream is(filename.c_str());
330 if (!is)
333 reader r(is, dir);
335 is
[all...]
H A Datffile_test.cpp115 atffile_reader(std::istream& is) : argument
116 detail::atf_atffile_reader(is)
155 "# This is a comment on a line of its own.\n"
156 "# And this is another one.\n"
189 "conf: var7 = \"This is a long value.\"\n"
202 "got_conf(var7, This is a long value.)",
231 "prop: var7 = \"This is a long value.\"\n"
244 "got_prop(var7, This is a long value.)",
H A Dio_test.cpp59 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 Dtest_program_test.cpp143 tp_reader(std::istream& is) : argument
144 detail::atf_tp_reader(is)
192 "descr: This is the description\n"
204 "got_tc(test_case_1, {descr=This is the description, ident=test_case_1, timeout=300})",
1019 // is implemented.
H A Dtest-program.cpp92 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...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dparser_test.cpp50 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 Dparser.cpp227 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())
/bind-9.6-ESV-R11/unit/atf-src/atf-report/
H A Dreader.cpp94 tokenizer(std::istream& is, size_t curline) : argument
96 (is, true, eof_type, nl_type, text_type, curline)
143 impl::atf_tps_reader::atf_tps_reader(std::istream& is) : argument
144 m_is(is)
H A Dreader_test.cpp108 tps_reader(std::istream& is) : argument
109 impl::atf_tps_reader(is)
354 "tc-so: This test is meant to simulate a diff.\n"
375 "got_tc_stdout_line( This test is meant to simulate a diff.)",
H A Datf-report.cpp87 //! This is meant to be subclassed, and each subclass can redefine any
90 //! This class is not tied to a output stream nor a file because, depending
189 //! The ticker_writer class implements a formatter that is user-friendly
191 //! read format. It is not meant to be parseable and its format can
296 // to specify the current column, which is needed because we have
588 converter(std::istream& is) : argument
589 atf::atf_report::atf_tps_reader(is)
634 "atf-report is a tool that parses the output of atf-run and "

Completed in 3633 milliseconds