Home
last modified time | relevance | path

Searched refs:HTMLDocument (Results 1 – 11 of 11) sorted by relevance

/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
DHTMLDocumentTest.java30 new HTMLDocument(buffer, "UTF-8").close(); in testWriter()
41 new HTMLDocument(buffer, "UTF-8").close(); in testStream()
52 final HTMLDocument doc = new HTMLDocument(buffer, "UTF-8"); in testHead()
65 final HTMLDocument doc = new HTMLDocument(buffer, "UTF-8"); in testBody()
78 final HTMLDocument doc = new HTMLDocument(buffer, "UTF-8"); in testMinimalHTMLDocument()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
DHTMLDocument.java24 public class HTMLDocument extends XMLDocument { class
46 public HTMLDocument(final Writer writer, final String encoding) in HTMLDocument() method in HTMLDocument
62 public HTMLDocument(final OutputStream output, final String encoding) in HTMLDocument() method in HTMLDocument
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
DReportPage.java18 import org.jacoco.report.internal.html.HTMLDocument;
74 final HTMLDocument doc = new HTMLDocument( in render()
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLDocument.java18 final class HTMLDocument extends IElement.Factory.ElementImpl class
23 public HTMLDocument () in HTMLDocument() method in HTMLDocument
28 public HTMLDocument (final String title, final String encoding) in HTMLDocument() method in HTMLDocument
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
DLabelColumnTest.java24 import org.jacoco.report.internal.html.HTMLDocument;
44 private HTMLDocument doc;
57 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8"); in setup()
DPercentageColumnTest.java28 import org.jacoco.report.internal.html.HTMLDocument;
48 private HTMLDocument doc;
61 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8"); in setup()
DBarColumnTest.java29 import org.jacoco.report.internal.html.HTMLDocument;
49 private HTMLDocument doc;
62 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8"); in setup()
DCounterColumnTest.java31 import org.jacoco.report.internal.html.HTMLDocument;
51 private HTMLDocument doc;
64 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8"); in setup()
DTableTest.java30 import org.jacoco.report.internal.html.HTMLDocument;
50 private HTMLDocument doc;
61 doc = new HTMLDocument(root.createFile("Test.html"), "UTF-8"); in setup()
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
DSourceHighlighterTest.java23 import org.jacoco.report.internal.html.HTMLDocument;
40 private HTMLDocument html;
53 html = new HTMLDocument(buffer, "UTF-8"); in setup()
/external/emma/core/java12/com/vladium/emma/report/html/
DReportGenerator.java167 final HTMLDocument page = createPage (title); in visit()
335 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); in visit()
452 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); in visit()
628 final HTMLDocument page = createPage (REPORT_HEADER_TITLE); in visit()
764 private HTMLDocument createPage (final String title) in createPage()
766 final HTMLDocument page = new HTMLDocument (title, m_settings.getOutEncoding ()); in createPage()
772 private IElement addPageHeader (final HTMLDocument page, final IItem item, final IItem [] path) in addPageHeader()
812 private IElement addPageFooter (final HTMLDocument page, final IItem item, final IItem [] path) in addPageFooter()
1115 private void embedSrcFile (final SrcFileItem item, final HTMLDocument page, in embedSrcFile()