/external/catch2/include/reporters/ |
D | catch_reporter_xml.cpp | 42 .writeAttribute( "filename", sourceInfo.file ) in writeSourceInfo() 43 .writeAttribute( "line", sourceInfo.line ); in writeSourceInfo() 57 m_xml.writeAttribute( "name", m_config->name() ); in testRunStarting() 60 .writeAttribute( "seed", m_config->rngSeed() ); in testRunStarting() 66 .writeAttribute( "name", groupInfo.name ); in testGroupStarting() 72 .writeAttribute( "name", trim( testInfo.name ) ) in testCaseStarting() 73 .writeAttribute( "description", testInfo.description ) in testCaseStarting() 74 .writeAttribute( "tags", testInfo.tagsAsString() ); in testCaseStarting() 87 .writeAttribute( "name", trim( sectionInfo.name ) ); in sectionStarting() 122 .writeAttribute( "success", result.succeeded() ) in assertionEnded() [all …]
|
D | catch_reporter_junit.cpp | 82 .writeAttribute( "name", "random-seed" ) in testRunStarting() 83 .writeAttribute( "value", m_config->rngSeed() ); in testRunStarting() 125 xml.writeAttribute( "name", stats.groupInfo.name ); in writeGroup() 126 xml.writeAttribute( "errors", unexpectedExceptions ); in writeGroup() 127 xml.writeAttribute( "failures", stats.totals.assertions.failed-unexpectedExceptions ); in writeGroup() 128 xml.writeAttribute( "tests", stats.totals.assertions.total() ); in writeGroup() 129 xml.writeAttribute( "hostname", "tbd" ); // !TBD in writeGroup() 131 xml.writeAttribute( "time", "" ); in writeGroup() 133 xml.writeAttribute( "time", suiteTime ); in writeGroup() 134 xml.writeAttribute( "timestamp", getCurrentTimestamp() ); in writeGroup() [all …]
|
/external/catch2/include/internal/ |
D | catch_xmlwriter.h | 48 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function 49 m_writer->writeAttribute( name, attribute ); in writeAttribute() 69 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ); 71 XmlWriter& writeAttribute( std::string const& name, bool attribute ); 74 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function 77 return writeAttribute( name, rss.str() ); in writeAttribute()
|
D | catch_xmlwriter.cpp | 229 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter 235 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | MethodHTML.java | 89 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()
|
D | AttributeHTML.java | 78 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
|
D | Class2HTML.java | 235 attribute_html.writeAttribute(attributes[i], "class" + i); in writeMainHTML()
|
/external/cldr/tools/java/org/unicode/cldr/draft/keyboard/out/ |
D | XmlWriter.java | 71 writer.writeAttribute(entry.getKey(), "" + entry.getValue()); in startElement() 102 writer.writeAttribute(entry.getKey(), "" + entry.getValue()); in addElement()
|
/external/bcc/tests/cc/ |
D | catch.hpp | 8934 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/catch2/single_include/catch2/ |
D | catch.hpp | 5596 ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter::ScopedElement 5597 m_writer->writeAttribute( name, attribute ); in writeAttribute() 5617 XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ); 5619 XmlWriter& writeAttribute( std::string const& name, bool attribute ); 5622 XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { in writeAttribute() function in Catch::XmlWriter 5625 return writeAttribute( name, rss.str() ); in writeAttribute() 12933 XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { in writeAttribute() function in Catch::XmlWriter 12939 XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { in writeAttribute() function in Catch::XmlWriter 14006 .writeAttribute( "name", "random-seed" ) in testRunStarting() 14007 .writeAttribute( "value", m_config->rngSeed() ); in testRunStarting() [all …]
|