Lines Matching defs:writer
144 ResultToSingleXmlLogHandler (xe::xml::Writer& writer, BatchResultTotals& totals)
145 : m_writer (writer)
183 static void writeTotals (xe::xml::Writer& writer, const BatchResultTotals& totals)
189 writer << Writer::BeginElement("ResultTotals");
193 writer << Writer::Attribute(xe::getTestStatusCodeName((xe::TestStatusCode)code), de::toString(totals.countByCode[code]).c_str());
197 writer << Writer::Attribute("All", de::toString(totalCases).c_str())
204 xe::xml::Writer writer (out);
206 ResultToSingleXmlLogHandler handler (writer, totals);
214 writer << xe::xml::Writer::BeginElement("BatchResult")
221 writeTotals(writer, totals);
223 writer << xe::xml::Writer::EndElement;