Searched refs:ReportElement (Results 1 – 5 of 5) sorted by relevance
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
D | ReportElement.java | 27 public class ReportElement extends XMLElement { class 45 public ReportElement(final String name, final OutputStream output, in ReportElement() method in ReportElement 51 private ReportElement(final String name, final ReportElement parent) in ReportElement() method in ReportElement 57 public ReportElement element(final String name) throws IOException { in element() 58 return new ReportElement(name, this); in element() 61 private ReportElement namedElement(final String elementName, in namedElement() 63 final ReportElement element = element(elementName); in namedElement() 77 final ReportElement sessioninfo = element("sessioninfo"); in sessioninfo() 92 public ReportElement group(final String name) throws IOException { in group() 105 public ReportElement packageElement(final String name) throws IOException { in packageElement() [all …]
|
D | XMLCoverageWriter.java | 43 final ReportElement element) throws IOException { in writeBundle() 51 final ReportElement parent) throws IOException { in writePackage() 52 final ReportElement element = parent.packageElement(p.getName()); in writePackage() 63 final ReportElement parent) throws IOException { in writeClass() 64 final ReportElement element = parent.classElement(c); in writeClass() 72 final ReportElement parent) throws IOException { in writeMethod() 73 final ReportElement element = parent.method(m); in writeMethod() 78 final ReportElement parent) throws IOException { in writeSourceFile() 79 final ReportElement element = parent.sourcefile(s.getName()); in writeSourceFile() 95 final ReportElement parent) throws IOException { in writeCounters() [all …]
|
D | XMLGroupVisitor.java | 28 protected final ReportElement element; 41 public XMLGroupVisitor(final ReportElement element, final String name) in XMLGroupVisitor() 50 final ReportElement child = element.group(bundle.getName()); in handleBundle() 57 final ReportElement child = element.group(name); in handleGroup()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/ |
D | XMLFormatter.java | 25 import org.jacoco.report.internal.xml.ReportElement; 59 private ReportElement report; in createVisitor() 86 report = new ReportElement(name, output, outputEncoding); in createVisitor()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/ |
D | XMLGroupVisitorTest.java | 29 private ReportElement root; 43 root = new ReportElement("Report", buffer, "UTF-8"); in setup()
|