Lines Matching defs:out
1178 /// @param name out parameter. Is set to the parsed property name,
1499 /// @param name out parameter. Is set to the name of the section
1694 /// @param section out parameter. This is set to the vector of
1721 /// @param section out parameter. This is set to the vector of
1834 /// @param out the output stream to serialize to.
1839 std::ostream& out)
1841 out << prop->get_name();
1844 out << " = " << write_property_value(prop);
1845 return out.good();
1852 /// @param out the output stream to serialize the section to.
1855 std::ostream& out)
1857 out << "[" << section.get_name() << "]\n";
1863 out << " ";
1864 write_property(*i, out);
1865 out << "\n";
1867 return out.good();
1877 /// @param out the output stream.
1882 std::ostream& out)
1888 write_section(**i, out);
1889 out << "\n";
1891 return out.good();
1899 /// @param out the output stream.