Home
last modified time | relevance | path

Searched refs:XmlWriter (Results 1 – 13 of 13) sorted by relevance

/external/catch2/include/internal/
Dcatch_xmlwriter.cpp160 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer ) in ScopedElement()
164 XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept in ScopedElement()
168XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) noexcept { in operator =()
178 XmlWriter::ScopedElement::~ScopedElement() { in ~ScopedElement()
183XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool inden… in writeText()
188 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) in XmlWriter() function in Catch::XmlWriter
193 XmlWriter::~XmlWriter() { in ~XmlWriter()
198 XmlWriter& XmlWriter::startElement( std::string const& name ) { in startElement()
208 XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name ) { in scopedElement()
214 XmlWriter& XmlWriter::endElement() { in endElement()
[all …]
Dcatch_xmlwriter.h33 class XmlWriter {
38 ScopedElement( XmlWriter* writer );
54 mutable XmlWriter* m_writer = nullptr;
57 XmlWriter( std::ostream& os = Catch::cout() );
58 ~XmlWriter();
60 XmlWriter( XmlWriter const& ) = delete;
61 XmlWriter& operator=( XmlWriter const& ) = delete;
63 XmlWriter& startElement( std::string const& name );
67 XmlWriter& endElement();
69 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
[all …]
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
DXmlWriter.java20 final class XmlWriter { class
24 private XmlWriter(XMLStreamWriter writer) { in XmlWriter() method in XmlWriter
28 static XmlWriter newXmlWriter(Writer writer) { in newXmlWriter()
36 return new XmlWriter(xmlStreamWriter); in newXmlWriter()
39 XmlWriter startDocument(String doctype, String dtdLocation) { in startDocument()
51 XmlWriter endDocument() { in endDocument()
62 XmlWriter startElement(String name) { in startElement()
66 XmlWriter startElement(String name, Map<String, ?> attributeToValue) { in startElement()
81 XmlWriter endElement() { in endElement()
93 XmlWriter addElement(String name, Map<String, ?> attributeToValue) { in addElement()
[all …]
DKeycodeMapToXml.java18 private final XmlWriter xmlWriter;
20 private KeycodeMapToXml(KeycodeMap keycodeMap, Platform platform, XmlWriter xmlWriter) { in KeycodeMapToXml()
28 XmlWriter xmlWriter = XmlWriter.newXmlWriter(writer); in writeToXml()
DKeyboardToXml.java27 private final XmlWriter xmlWriter;
29 private KeyboardToXml(Keyboard keyboard, XmlWriter xmlWriter) { in KeyboardToXml()
36 XmlWriter xmlWriter = XmlWriter.newXmlWriter(writer); in writeToXml()
/external/libprotobuf-mutator/examples/xml/
Dxml_writer.cc27 class XmlWriter { class
29 XmlWriter();
42 XmlWriter::XmlWriter() {} in XmlWriter() function in protobuf_mutator::xml::__anonde8cc9d90111::XmlWriter
44 void XmlWriter::ToXml(const std::string& name, const std::string& value) { in ToXml()
49 void XmlWriter::ToXml(const Misk& misk) { in ToXml()
59 void XmlWriter::ToXml(const DoctypeDecl& doctype) { in ToXml()
67 void XmlWriter::ToXml(const Content& content) { in ToXml()
79 void XmlWriter::ToXml(const Element& element) { in ToXml()
99 std::string XmlWriter::ToXml(const Document& doc) { in ToXml()
123 XmlWriter writer; in MessageToXml()
/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp123 XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" ); in writeGroup()
176 XmlWriter::ScopedElement e = xml.scopedElement( "testcase" ); in writeSection()
236 XmlWriter::ScopedElement e = xml.scopedElement( elementName ); in writeAssertion()
Dcatch_reporter_xml.cpp173 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" ); in sectionEnded()
187 XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" ); in testCaseEnded()
Dcatch_reporter_xml.h55 XmlWriter m_xml;
Dcatch_reporter_junit.h51 XmlWriter xml;
/external/catch2/single_include/catch2/
Dcatch.hpp5581 class XmlWriter { class
5586 ScopedElement( XmlWriter* writer );
5602 mutable XmlWriter* m_writer = nullptr;
5605 XmlWriter( std::ostream& os = Catch::cout() );
5606 ~XmlWriter();
5608 XmlWriter( XmlWriter const& ) = delete;
5609 XmlWriter& operator=( XmlWriter const& ) = delete;
5611 XmlWriter& startElement( std::string const& name );
5615 XmlWriter& endElement();
5617 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
[all …]
/external/bcc/tests/cc/
Dcatch.hpp8909 class XmlWriter { class
8914 ScopedElement( XmlWriter* writer ) in ScopedElement()
8940 mutable XmlWriter* m_writer;
8943 XmlWriter() in XmlWriter() function in Catch::XmlWriter
8949 XmlWriter( std::ostream& os ) in XmlWriter() function in Catch::XmlWriter
8955 ~XmlWriter() { in ~XmlWriter()
8960 XmlWriter& startElement( std::string const& name ) { in startElement()
8976 XmlWriter& endElement() { in endElement()
8990 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute()
8996 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute()
[all …]
/external/catch2/docs/
Drelease-notes.md93 * Unrestored stream state in `XmlWriter` (#1489)