Searched refs:XMLElement (Results 1 - 13 of 13) sorted by relevance

/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
H A DXMLGroupVisitor.java28 protected final XMLElement element;
41 public XMLGroupVisitor(final XMLElement element, final String name)
50 final XMLElement child = createChild(bundle.getName());
57 final XMLElement child = createChild(name);
66 private XMLElement createChild(final String name) throws IOException {
H A DXMLCoverageWriter.java46 public static XMLElement createChild(final XMLElement parent,
48 final XMLElement child = parent.element(tagname);
64 final XMLElement element) throws IOException {
72 final XMLElement parent) throws IOException {
73 final XMLElement element = createChild(parent, "package", p.getName());
84 final XMLElement parent) throws IOException {
85 final XMLElement element = createChild(parent, "class", c.getName());
93 final XMLElement parent) throws IOException {
94 final XMLElement elemen
[all...]
H A DXMLElement.java20 * Simple API to create well formed XML streams. A {@link XMLElement} instance
25 public class XMLElement { class
50 private XMLElement lastchild;
60 protected XMLElement(final Writer writer, final String name) { method in class:XMLElement
96 protected void addChildElement(final XMLElement child) throws IOException {
147 public XMLElement attr(final String name, final String value)
179 public XMLElement attr(final String name, final int value)
198 public XMLElement attr(final String name, final long value)
212 public XMLElement text(final String text) throws IOException {
233 public XMLElement elemen
[all...]
H A DXMLDocument.java25 * @see XMLElement
27 public class XMLDocument extends XMLElement {
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
H A DXmlDocumentation.java21 import org.jacoco.report.internal.xml.XMLElement;
33 final XMLElement parent) throws IOException {
35 final XMLElement element = parent.element("command");
43 private static void writeOptions(final XMLElement parent,
47 final XMLElement optionNode = parent.element("option");
68 final XMLElement root = new XMLDocument("documentation", null, null,
/external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/
H A DXMLFormatter.java27 import org.jacoco.report.internal.xml.XMLElement;
62 final XMLElement root = new XMLDocument("report", PUBID, SYSTEM,
66 RootVisitor(final XMLElement element) throws IOException {
95 final XMLElement sessioninfo = root.element("sessioninfo");
/external/tinyxml2/
H A Dtinyxml2.h93 class XMLElement;
343 virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { return true; }
345 virtual bool VisitExit( const XMLElement& /*element*/ ) { return true; }
436 friend class XMLElement;
444 virtual XMLElement* ToElement() { return 0; } ///< Safely cast to an Element, or null.
451 virtual const XMLElement* ToElement() const { return 0; }
486 const XMLElement* FirstChildElement( const char* value=0 ) const;
487 XMLElement* FirstChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( _value )); }
496 const XMLElement* LastChildElemen
840 class XMLElement : public XMLNode class in namespace:tinyxml2
[all...]
H A Dtinyxml2.cpp512 returnNode = new (elementPool.Alloc()) XMLElement( this );
675 const XMLElement* XMLNode::FirstChildElement( const char* value ) const
678 XMLElement* element = node->ToElement();
689 const XMLElement* XMLNode::LastChildElement( const char* value ) const
692 XMLElement* element = node->ToElement();
703 const XMLElement* XMLNode::NextSiblingElement( const char* value ) const
716 const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const
768 if ( node->ToElement() && node->ToElement()->ClosingType() == XMLElement::CLOSING ) {
770 *parentEnd = static_cast<XMLElement*>(node)->value;
778 XMLElement* el
1108 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), function in class:XMLElement
[all...]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
H A DXMLElementTest.java23 * Unit tests for {@link XMLElement}.
29 private XMLElement root;
34 root = new XMLElement(buffer, "root");
H A DXMLGroupVisitorTest.java33 private XMLElement root;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
H A DHTMLElement.java18 import org.jacoco.report.internal.xml.XMLElement;
21 * A {@link XMLElement} with utility methods to create XHTML documents. It
24 public class HTMLElement extends XMLElement {
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DS_V_G_.py57 XMLElement = ET.Element variable
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DS_V_G_.py57 XMLElement = ET.Element variable

Completed in 259 milliseconds