Home
last modified time | relevance | path

Searched refs:XMLElement (Results 1 – 14 of 14) sorted by relevance

/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
DXMLCoverageWriter.java46 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 …]
DXMLElement.java25 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()
DXMLGroupVisitor.java28 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()
DXMLDocument.java27 public class XMLDocument extends XMLElement {
/external/tinyxml2/
Dtinyxml2.cpp708 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 …]
Dtinyxml2.h119 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 …]
Dxmltest.cpp164 XMLElement* titleElement = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" ); in example_3()
255XMLElement* 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()
472XMLElement* sub[3] = { doc->NewElement( "sub" ), doc->NewElement( "sub" ), doc->NewElement( "sub" … in main()
[all …]
Dreadme.md93 However, any sub-node of the Document, XMLElement, XMLText, etc, can only
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
DXmlDocumentation.java21 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/
DXMLFormatter.java27 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/
DXMLElementTest.java29 private XMLElement root;
34 root = new XMLElement(buffer, "root"); in setUp()
DXMLGroupVisitorTest.java33 private XMLElement root;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
DHTMLElement.java18 import org.jacoco.report.internal.xml.XMLElement;
24 public class HTMLElement extends XMLElement {
/external/fonttools/Lib/fontTools/ttLib/tables/
DS_V_G_.py62 XMLElement = ET.Element variable