Lines Matching defs:input
71 /// \param input The stream to read the lines from.
75 /// throw format_error If the input stream has an invalid format.
77 parse_properties(std::istream& input)
82 while (std::getline(input, line).good() && !line.empty()) {
161 /// \param input The stream to read from.
165 /// \throw format_error If there is any problem in the input data.
167 engine::parse_atf_list(std::istream& input)
171 std::getline(input, line);
173 || !input.good())
178 std::getline(input, line);
179 if (!line.empty() || !input.good())
184 while (std::getline(input, line).good()) {
191 const model::properties_map props = parse_properties(input);