Lines Matching defs:is
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) :
138 (is, skipws, eof_type, nl_type, word_type)
156 tokenizer(std::istream& is, bool skipws) :
158 (is, skipws, eof_type, nl_type, word_type)
179 tokenizer(std::istream& is, bool skipws) :
181 (is, skipws, eof_type, nl_type, word_type)
200 tokenizer(std::istream& is, bool skipws) :
202 (is, skipws, eof_type, nl_type, word_type)
734 header_reader(std::istream& is) :
735 m_is(is)