/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
D | XMLCoverageWriter.java | 46 public static XMLElement createChild(final XMLElement parent, in createChild() 48 final XMLElement child = parent.element(tagname); in createChild() 64 final XMLElement element) throws IOException { in writeBundle() 72 final XMLElement parent) throws IOException { in writePackage() 73 final XMLElement element = createChild(parent, "package", p.getName()); in writePackage() 84 final XMLElement parent) throws IOException { in writeClass() 85 final XMLElement element = createChild(parent, "class", c.getName()); in writeClass() 93 final XMLElement parent) throws IOException { in writeMethod() 94 final XMLElement element = createChild(parent, "method", m.getName()); in writeMethod() 104 final XMLElement parent) throws IOException { in writeSourceFile() [all …]
|
D | XMLElement.java | 25 public class XMLElement { class 50 private XMLElement lastchild; 60 protected XMLElement(final Writer writer, final String name) { in XMLElement() method in XMLElement 96 protected void addChildElement(final XMLElement child) throws IOException { in addChildElement() 147 public XMLElement attr(final String name, final String value) in attr() 179 public XMLElement attr(final String name, final int value) in attr() 198 public XMLElement attr(final String name, final long value) in attr() 212 public XMLElement text(final String text) throws IOException { in text() 233 public XMLElement element(final String name) throws IOException { in element() 234 final XMLElement element = new XMLElement(writer, name); in element()
|
D | XMLGroupVisitor.java | 28 protected final XMLElement element; 41 public XMLGroupVisitor(final XMLElement element, final String name) in XMLGroupVisitor() 50 final XMLElement child = createChild(bundle.getName()); in handleBundle() 57 final XMLElement child = createChild(name); in handleGroup() 66 private XMLElement createChild(final String name) throws IOException { in createChild()
|
D | XMLDocument.java | 27 public class XMLDocument extends XMLElement {
|
/external/tinyxml2/ |
D | tinyxml2.cpp | 708 returnNode = CreateUnlinkedNode<XMLElement>( _elementPool ); in Identify() 940 const XMLElement* XMLNode::FirstChildElement( const char* name ) const in FirstChildElement() 943 const XMLElement* element = node->ToElementWithName( name ); in FirstChildElement() 952 const XMLElement* XMLNode::LastChildElement( const char* name ) const in LastChildElement() 955 const XMLElement* element = node->ToElementWithName( name ); in LastChildElement() 964 const XMLElement* XMLNode::NextSiblingElement( const char* name ) const in NextSiblingElement() 967 const XMLElement* element = node->ToElementWithName( name ); in NextSiblingElement() 976 const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const in PreviousSiblingElement() 979 const XMLElement* element = node->ToElementWithName( name ); in PreviousSiblingElement() 1063 XMLElement* ele = node->ToElement(); in ParseDeep() [all …]
|
D | tinyxml2.h | 119 class XMLElement; variable 495 … virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { in VisitEnter() argument 499 virtual bool VisitExit( const XMLElement& /*element*/ ) { in VisitExit() argument 670 friend class XMLElement; variable 685 virtual XMLElement* ToElement() { in ToElement() 709 virtual const XMLElement* ToElement() const { in ToElement() 773 const XMLElement* FirstChildElement( const char* name = 0 ) const; 775 XMLElement* FirstChildElement( const char* name = 0 ) { 776 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name )); 791 const XMLElement* LastChildElement( const char* name = 0 ) const; [all …]
|
D | xmltest.cpp | 164 XMLElement* titleElement = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" ); in example_3() 255 …XMLElement* attributeApproachElement = doc.FirstChildElement()->FirstChildElement( "attributeAppro… in example_4() 258 XMLElement* textApproachElement = doc.FirstChildElement()->FirstChildElement( "textApproach" ); in example_4() 400 XMLElement* element1 = doc.NewElement("Element1"); in main() 401 XMLElement* element2 = doc.NewElement("Element2"); in main() 410 XMLElement* element1 = doc.NewElement("Element1"); in main() 411 XMLElement* element2 = doc.NewElement("Element2"); in main() 428 XMLElement* root = doc.FirstChildElement(); in main() 429 XMLElement* newElement = doc.NewElement( "Subelement" ); in main() 472 …XMLElement* sub[3] = { doc->NewElement( "sub" ), doc->NewElement( "sub" ), doc->NewElement( "sub" … in main() [all …]
|
D | readme.md | 93 However, any sub-node of the Document, XMLElement, XMLText, etc, can only
|
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/ |
D | XmlDocumentation.java | 21 import org.jacoco.report.internal.xml.XMLElement; 33 final XMLElement parent) throws IOException { in writeCommand() 35 final XMLElement element = parent.element("command"); in writeCommand() 43 private static void writeOptions(final XMLElement parent, in writeOptions() 47 final XMLElement optionNode = parent.element("option"); in writeOptions() 68 final XMLElement root = new XMLDocument("documentation", null, null, in main()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/ |
D | XMLFormatter.java | 27 import org.jacoco.report.internal.xml.XMLElement; 62 final XMLElement root = new XMLDocument("report", PUBID, SYSTEM, in createVisitor() 66 RootVisitor(final XMLElement element) throws IOException { in createVisitor() 95 final XMLElement sessioninfo = root.element("sessioninfo"); in createVisitor()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/ |
D | XMLElementTest.java | 29 private XMLElement root; 34 root = new XMLElement(buffer, "root"); in setUp()
|
D | XMLGroupVisitorTest.java | 33 private XMLElement root;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
D | HTMLElement.java | 18 import org.jacoco.report.internal.xml.XMLElement; 24 public class HTMLElement extends XMLElement {
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | S_V_G_.py | 62 XMLElement = ET.Element variable
|