Lines Matching defs:input

868   /// The input stream we are parsing from.
883 /// @param in the input stream to parse from.
893 /// Note that this function doesn't alter the input stream.
922 /// Note that this function doesn't alter the input stream.
935 /// Get the next character of the input stream.
938 /// input stream.
941 /// characters from the input stream.
943 /// @return the next character of the input stream.
962 /// Put a character that was read from the input stream, back into
963 /// that input stream, so that a subsequent call to
971 /// Test if the status of the input stream is good.
973 /// @return true iff the status of the input stream is good.
982 /// Tests if the input stream has reached end of file.
984 /// @return true iff the input stream has reached end of file.
998 /// the input stream, sees if it needs to escape them and then
1067 /// Read the next character from the input stream.
1077 /// @return true if the reading went well and if the input stream is
1109 /// the input stream is left in a non-erratic state.
1126 /// @return true iff the input stream is left in a non-erratic state.
1142 /// @return true if the input stream is left in a non-erratic state.
1182 /// @return true iff the input stream is left in a non-erratic
1364 /// Reads a string from the input stream.
1503 /// @return true if the input stream was left in a non-erratic
1692 /// @param input the input stream to parse the ini file from.
1695 /// sections that have been parsed from the input stream.
1700 read_sections(std::istream& input,
1703 read_context ctxt(input);
1705 while (input.good())
1714 return input.good() || input.eof();
1722 /// sections that have been parsed from the input stream.
1740 /// Parse an ini config file from an input stream.
1742 /// @param input the input stream to parse the ini config file from.
1746 read_config(istream& input,
1750 if (!read_sections(input, sections))
1776 /// Parse an ini config file from an input stream.
1781 read_config(std::istream& input)
1784 if (!read_config(input, *c))
2007 /// @param input the input stream where to read the function call
2014 /// the resulting of parsing the @p input.
2016 read_function_call_expr(std::istream& input,
2019 read_context ctxt(input);
2025 /// @param input a string where to read the function call expression
2032 /// the resulting of parsing the @p input.
2034 read_function_call_expr(const string& input,
2037 std::istringstream in(input);
2043 /// @param input a string where to read the function call expression
2049 read_function_call_expr(const string& input)
2052 read_function_call_expr(input, expr);