Home
last modified time | relevance | path

Searched refs:writeAttribute (Results 1 – 21 of 21) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_xml.cpp42 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo()
43 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo()
57 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
59 m_xml.writeAttribute( "filters", serializeFilters( m_config->getTestsOrTags() ) ); in testRunStarting()
62 .writeAttribute( "seed", m_config->rngSeed() ); in testRunStarting()
68 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
74 .writeAttribute( "name", trim( testInfo.name ) ) in testCaseStarting()
75 .writeAttribute( "description", testInfo.description ) in testCaseStarting()
76 .writeAttribute( "tags", testInfo.tagsAsString() ); in testCaseStarting()
89 .writeAttribute( "name", trim( sectionInfo.name ) ); in sectionStarting()
[all …]
Dcatch_reporter_junit.cpp120 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
121 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
122 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup()
123 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup()
124 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup()
126 xml.writeAttribute( "time", "" ); in writeGroup()
128 xml.writeAttribute( "time", suiteTime ); in writeGroup()
129 xml.writeAttribute( "timestamp", getCurrentTimestamp() ); in writeGroup()
136 .writeAttribute("name", "filters") in writeGroup()
137 .writeAttribute("value", serializeFilters(m_config->getTestsOrTags())); in writeGroup()
[all …]
Dcatch_reporter_sonarqube.hpp46 xml.writeAttribute("version", "1"); in testRunStarting()
69 xml.writeAttribute("path", filename); in writeTestFile()
90 xml.writeAttribute("name", name); in writeSection()
91 … xml.writeAttribute("duration", static_cast<long>(sectionNode.stats.durationInSeconds * 1000)); in writeSection()
144 xml.writeAttribute("message", messageRss.str()); in writeAssertion()
/external/catch2/include/internal/
Dcatch_xmlwriter.h56 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function
57 m_writer->writeAttribute( name, attribute ); in writeAttribute()
78 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
80 XmlWriter& writeAttribute( std::string const& name, bool attribute );
83 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function
86 return writeAttribute( name, rss.str() ); in writeAttribute()
Dcatch_xmlwriter.cpp268 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
274 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
/external/catch2/single_include/catch2/
Dcatch_reporter_sonarqube.hpp46 xml.writeAttribute("version", "1"); in testRunStarting()
69 xml.writeAttribute("path", filename); in writeTestFile()
90 xml.writeAttribute("name", name); in writeSection()
91 … xml.writeAttribute("duration", static_cast<long>(sectionNode.stats.durationInSeconds * 1000)); in writeSection()
144 xml.writeAttribute("message", messageRss.str()); in writeAssertion()
Dcatch.hpp6219 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter::ScopedElement
6220 m_writer->writeAttribute( name, attribute ); in writeAttribute()
6241 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6243 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6246 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
6249 return writeAttribute( name, rss.str() ); in writeAttribute()
15385 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
15391 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
16587 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
16588 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
[all …]
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DMethodHTML.java89 attribute_html.writeAttribute(attributes[i], name + "@" + i); in writeField()
137 attribute_html.writeAttribute(attributes[i], "method" + method_number + "@" + i, in writeMethod()
153 attribute_html.writeAttribute(c_a[j], "method" + method_number + "@" + i + "@" in writeMethod()
DAttributeHTML.java78 final void writeAttribute( final Attribute attribute, final String anchor ) { in writeAttribute() method in AttributeHTML
79 writeAttribute(attribute, anchor, 0); in writeAttribute()
83 …final void writeAttribute( final Attribute attribute, final String anchor, final int method_number… in writeAttribute() method in AttributeHTML
DClass2HTML.java235 attribute_html.writeAttribute(attributes[i], "class" + i); in writeMainHTML()
/external/javassist/src/main/javassist/bytecode/
DClassFileWriter.java152 writeAttribute(output, aw, 0); in end()
235 static void writeAttribute(ByteStream bs, AttributeWriter aw, int attrCount) { in writeAttribute() method in ClassFileWriter
293 writeAttribute(output, aw, 0); in add()
378 writeAttribute(output, aw, attrCount); in begin()
489 writeAttribute(output, aw, attrCount); in end()
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/
DXmlWriter.java71 writer.writeAttribute(entry.getKey(), "" + entry.getValue()); in startElement()
102 writer.writeAttribute(entry.getKey(), "" + entry.getValue()); in addElement()
/external/bcc/tests/cc/
Dcatch.hpp8934 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter::ScopedElement
8935 m_writer->writeAttribute( name, attribute ); in writeAttribute()
8990 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
8996 XmlWriter& writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
9002 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
9005 return writeAttribute( name, oss.str() ); in writeAttribute()
9109 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting()
9115 .writeAttribute( "name", groupInfo.name ); in testGroupStarting()
9120 m_xml.startElement( "TestCase" ).writeAttribute( "name", trim( testInfo.name ) ); in testCaseStarting()
9130 .writeAttribute( "name", trim( sectionInfo.name ) ) in sectionStarting()
[all …]
/external/libabigail/tests/lib/
Dcatch.hpp6253 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter::ScopedElement
6254 m_writer->writeAttribute( name, attribute ); in writeAttribute()
6275 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute );
6277 XmlWriter& writeAttribute( std::string const& name, bool attribute );
6280 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter
6283 return writeAttribute( name, rss.str() ); in writeAttribute()
15629 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter
15635 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
16840 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup()
16841 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAsmWriter.cpp2402 void writeAttribute(const Attribute &Attr, bool InAttrGroup = false);
4139 void AssemblyWriter::writeAttribute(const Attribute &Attr, bool InAttrGroup) { in writeAttribute() function in AssemblyWriter
4161 writeAttribute(Attr, InAttrGroup); in writeAttributeSet()
/external/llvm-project/llvm/lib/IR/
DAsmWriter.cpp2591 void writeAttribute(const Attribute &Attr, bool InAttrGroup = false);
4374 void AssemblyWriter::writeAttribute(const Attribute &Attr, bool InAttrGroup) { in writeAttribute() function in AssemblyWriter
4409 writeAttribute(Attr, InAttrGroup); in writeAttributeSet()
/external/guice/extensions/persist/lib/
Ddom4j-1.6.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/dom4j/ org/ ...
/external/antlr/runtime/ActionScript/project/lib/
DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/ ...
/external/guice/extensions/struts2/lib/
Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath ...
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/lib/
Djavassist-3.19.0-GA.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/kotlinc/lib/
Dkotlin-compiler.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/backend-common. ...