Home
last modified time | relevance | path

Searched refs:XmlFormatting (Results 1 – 8 of 8) sorted by relevance

/external/catch2/include/internal/
Dcatch_xmlwriter.h17 enum class XmlFormatting { enum
23 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs);
24 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs);
46 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
53 …edElement& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
63 XmlFormatting m_fmt;
72 …Writer& startElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
74 …lement scopedElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
76 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
89 …XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
[all …]
Dcatch_xmlwriter.cpp53 bool shouldNewline(XmlFormatting fmt) { in shouldNewline()
54 … return !!(static_cast<std::underlying_type<XmlFormatting>::type>(fmt & XmlFormatting::Newline)); in shouldNewline()
57 bool shouldIndent(XmlFormatting fmt) { in shouldIndent()
58 … return !!(static_cast<std::underlying_type<XmlFormatting>::type>(fmt & XmlFormatting::Indent)); in shouldIndent()
63 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs) { in operator |()
64 return static_cast<XmlFormatting>( in operator |()
65 static_cast<std::underlying_type<XmlFormatting>::type>(lhs) | in operator |()
66 static_cast<std::underlying_type<XmlFormatting>::type>(rhs) in operator |()
70 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs) { in operator &()
71 return static_cast<XmlFormatting>( in operator &()
[all …]
/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp150 … xml.scopedElement( "system-out" ).writeText( trim( stdOutForSuite ), XmlFormatting::Newline ); in writeGroup()
151 … xml.scopedElement( "system-err" ).writeText( trim( stdErrForSuite ), XmlFormatting::Newline ); in writeGroup()
200 … xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), XmlFormatting::Newline ); in writeSection()
202 … xml.scopedElement( "system-err" ).writeText( trim( sectionNode.stdErr ), XmlFormatting::Newline ); in writeSection()
270 xml.writeText( rss.str(), XmlFormatting::Newline ); in writeAssertion()
Dcatch_reporter_xml.cpp196 … m_xml.scopedElement( "StdOut" ).writeText( trim( testCaseStats.stdOut ), XmlFormatting::Newline ); in testCaseEnded()
198 … m_xml.scopedElement( "StdErr" ).writeText( trim( testCaseStats.stdErr ), XmlFormatting::Newline ); in testCaseEnded()
Dcatch_reporter_sonarqube.hpp165 xml.writeText(textRss.str(), XmlFormatting::Newline); in writeAssertion()
/external/catch2/single_include/catch2/
Dcatch.hpp6180 enum class XmlFormatting { enum
6186 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs);
6187 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs);
6209 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
6216 …edElement& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6226 XmlFormatting m_fmt;
6235 …Writer& startElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6237 …lement scopedElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6239 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6252 …XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
[all …]
Dcatch_reporter_sonarqube.hpp165 xml.writeText(textRss.str(), XmlFormatting::Newline); in writeAssertion()
/external/libabigail/tests/lib/
Dcatch.hpp6214 enum class XmlFormatting { enum
6220 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs);
6221 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs);
6243 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
6250 …edElement& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6260 XmlFormatting m_fmt;
6269 …Writer& startElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6271 …lement scopedElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
6273 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6286 …XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
[all …]