Searched refs:XMLElement (Results 1 – 11 of 11) sorted by relevance
/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.h | 93 class XMLElement; variable 343 …virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) … in VisitEnter() argument 345 virtual bool VisitExit( const XMLElement& /*element*/ ) { return true; } in VisitExit() argument 436 friend class XMLElement; variable 444 …virtual XMLElement* ToElement() { return 0; } ///< Safely cast to an Element, or … in ToElement() 451 virtual const XMLElement* ToElement() const { return 0; } in ToElement() 486 const XMLElement* FirstChildElement( const char* value=0 ) const; 487 …XMLElement* FirstChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_ca… 496 const XMLElement* LastChildElement( const char* value=0 ) const; 497 …XMLElement* LastChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cas… [all …]
|
D | tinyxml2.cpp | 512 returnNode = new (elementPool.Alloc()) XMLElement( this ); in Identify() 675 const XMLElement* XMLNode::FirstChildElement( const char* value ) const in FirstChildElement() 678 XMLElement* element = node->ToElement(); in FirstChildElement() 689 const XMLElement* XMLNode::LastChildElement( const char* value ) const in LastChildElement() 692 XMLElement* element = node->ToElement(); in LastChildElement() 703 const XMLElement* XMLNode::NextSiblingElement( const char* value ) const in NextSiblingElement() 716 const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const in PreviousSiblingElement() 768 if ( node->ToElement() && node->ToElement()->ClosingType() == XMLElement::CLOSING ) { in ParseDeep() 770 *parentEnd = static_cast<XMLElement*>(node)->value; in ParseDeep() 778 XMLElement* ele = node->ToElement(); in ParseDeep() [all …]
|
/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 | 57 XMLElement = ET.Element variable
|