Searched refs:ReportEntry (Results 1 – 1 of 1) sorted by relevance
54 Map<String, ReportEntry> entries = parseReport(reportXml); in main()99 for (ReportEntry reportEntry : entries.values()) { in main()142 private static Map<String, ReportEntry> parseReport(File reportXmlFile) { in parseReport()144 Map<String, ReportEntry> entries = new TreeMap<String, ReportEntry>(); in parseReport()267 ReportEntry entry = new ReportEntry(cls, method); in parseReport()268 ReportEntry prev = entries.put(entry.key(), entry); in parseReport()364 private static class ReportEntry { class in JacocoReportCheck369 ReportEntry(String cls, Method method) { in ReportEntry() method in JacocoReportCheck.ReportEntry