/external/jacoco/org.jacoco.agent.test/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo Agent Tests
4 Bundle-SymbolicName: org.jacoco.agent.test
6 Fragment-Host: org.jacoco.agent
|
/external/jacoco/org.jacoco.ant.test/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo Ant Tasks Tests 4 Bundle-SymbolicName: org.jacoco.ant.test 8 Fragment-Host: org.jacoco.ant
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/ |
package-info.java | 16 * with an {@link org.jacoco.core.analysis.Analyzer} instance from class files 18 * {@linkplain org.jacoco.core.data.IExecutionDataVisitor execution data} 23 * The {@link org.jacoco.core.analysis.CoverageBuilder} creates a hierarchy of 24 * {@link org.jacoco.core.analysis.ICoverageNode} instances with the following 25 * {@link org.jacoco.core.analysis.ICoverageNode.ElementType types}: 29 * +-- {@linkplain org.jacoco.core.analysis.ICoverageNode.ElementType#GROUP Group} (optional) 30 * +-- {@linkplain org.jacoco.core.analysis.ICoverageNode.ElementType#BUNDLE Bundle} 31 * +-- {@linkplain org.jacoco.core.analysis.ICoverageNode.ElementType#PACKAGE Package} 32 * +-- {@linkplain org.jacoco.core.analysis.ICoverageNode.ElementType#SOURCEFILE Source File} 33 * +-- {@linkplain org.jacoco.core.analysis.ICoverageNode.ElementType#CLASS Class [all...] |
/external/jacoco/org.jacoco.agent.rt.test/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.tests</artifactId> 19 <relativePath>../org.jacoco.tests</relativePath> 22 <artifactId>org.jacoco.agent.rt.test</artifactId> 24 <name>JaCoCo :: Test :: Agent RT</name> 27 <jacoco.includes>org.jacoco.agent.rt.*</jacoco.includes> 33 <artifactId>org.jacoco.agent.rt</artifactId>
|
/external/jacoco/org.jacoco.agent.test/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.tests</artifactId> 19 <relativePath>../org.jacoco.tests</relativePath> 22 <artifactId>org.jacoco.agent.test</artifactId> 24 <name>JaCoCo :: Test :: Agent</name> 27 <jacoco.includes>org.jacoco.agent.*</jacoco.includes> 33 <artifactId>org.jacoco.agent</artifactId>
|
/external/jacoco/org.jacoco.core/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo Core
4 Bundle-SymbolicName: org.jacoco.core
8 Export-Package: org.jacoco.core;version="0.7.5",
9 org.jacoco.core.analysis;version="0.7.5",
10 org.jacoco.core.data;version="0.7.5",
11 org.jacoco.core.instr;version="0.7.5",
12 org.jacoco.core.internal.analysis;version="0.7.5";x-internal=true,
13 org.jacoco.core.runtime;version="0.7.5",
14 org.jacoco.core.tools;version="0.7.5"
|
/external/jacoco/org.jacoco.examples/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo API Usage Examples
4 Bundle-SymbolicName: org.jacoco.examples
8 Import-Package: org.jacoco.core.analysis;bundle-version="[0.7.5,0.7.6)",
9 org.jacoco.core.data;bundle-version="[0.7.5,0.7.6)",
10 org.jacoco.core.instr;bundle-version="[0.7.5,0.7.6)",
11 org.jacoco.core.runtime;bundle-version="[0.7.5,0.7.6)",
12 org.jacoco.core.tools;bundle-version="[0.7.5,0.7.6)",
13 org.jacoco.report;bundle-version="[0.7.5,0.7.6)",
14 org.jacoco.report.html;bundle-version="[0.7.5,0.7.6)",
|
/external/jacoco/org.jacoco.report.test/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo Report Tests
4 Bundle-SymbolicName: org.jacoco.report.test
6 Fragment-Host: org.jacoco.report
9 Import-Package: org.jacoco.core.internal.analysis;bundle-version="[0.7.5,0.7.6)",
|
/external/jacoco/org.jacoco.report.test/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.tests</artifactId> 19 <relativePath>../org.jacoco.tests</relativePath> 22 <artifactId>org.jacoco.report.test</artifactId> 24 <name>JaCoCo :: Test :: Report</name> 27 <jacoco.includes>org.jacoco.report.*</jacoco.includes> 33 <artifactId>org.jacoco.report</artifactId>
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/ |
JaCoCo.java | 12 package org.jacoco.core; 19 * Static Meta information about JaCoCo. 21 public final class JaCoCo { 23 /** Qualified build version of the JaCoCo core library. */ 26 /** Absolute URL of the current JaCoCo home page */ 37 .getBundle("org.jacoco.core.jacoco"); 43 private JaCoCo() {
|
/external/jacoco/org.jacoco.doc/META-INF/ |
MANIFEST.MF | 3 Bundle-Name: JaCoCo Documentation
4 Bundle-SymbolicName: org.jacoco.doc
|
/external/jacoco/org.jacoco.examples.test/src/test/resources/ |
verify-it.groovy | 2 assert new File(realBaseDir, "target/site/jacoco/index.html").exists(); 3 assert new File(realBaseDir, "target/site/jacoco-it/index.html").exists();
|
verify-offline.groovy | 2 assert new File(realBaseDir, "target/site/jacoco/index.html").exists(); 3 assert !new File(realBaseDir, "target/site/jacoco-it/index.html").exists();
|
verify.groovy | 2 assert new File(realBaseDir, "target/site/jacoco/index.html").exists(); 3 assert !new File(realBaseDir, "target/site/jacoco-it/index.html").exists();
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/ |
PageTestBase.java | 12 package org.jacoco.report.internal.html.page; 17 import org.jacoco.report.ILanguageNames; 18 import org.jacoco.report.JavaNames; 19 import org.jacoco.report.MemoryMultiReportOutput; 20 import org.jacoco.report.internal.ReportOutputFolder; 21 import org.jacoco.report.internal.html.HTMLSupport; 22 import org.jacoco.report.internal.html.IHTMLReportContext; 23 import org.jacoco.report.internal.html.ILinkable; 24 import org.jacoco.report.internal.html.LinkableStub; 25 import org.jacoco.report.internal.html.index.IIndexUpdate [all...] |
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/ |
JaCoCoTest.java | 12 package org.jacoco.core; 19 * Unit tests for {@link JaCoCo}. 25 assertNotNull(JaCoCo.VERSION); 30 assertNotNull(JaCoCo.HOMEURL); 35 assertNotNull(JaCoCo.RUNTIMEPACKAGE);
|
/external/jacoco/org.jacoco.doc/javadoc/ |
overview.html | 5 This is the public JaCoCo API that can be used for integration. JaCoCo is
11 <h2>Bundle org.jacoco.core</h2>
24 <h2>Bundle org.jacoco.agent</h2>
31 <h2>Bundle org.jacoco.report</h2>
|
/external/jacoco/org.jacoco.ant/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |
/external/jacoco/org.jacoco.ant.test/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.tests</artifactId> 19 <relativePath>../org.jacoco.tests</relativePath> 22 <artifactId>org.jacoco.ant.test</artifactId> 24 <name>JaCoCo :: Test :: Ant</name> 27 <jacoco.includes>org.jacoco.ant.*</jacoco.includes> 33 <artifactId>org.jacoco.ant</artifactId> 55 <basedir>${project.build.outputDirectory}/org/jacoco/ant</basedir [all...] |
/external/jacoco/org.jacoco.core.test/ |
pom.xml | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.tests</artifactId> 19 <relativePath>../org.jacoco.tests</relativePath> 22 <artifactId>org.jacoco.core.test</artifactId> 24 <name>JaCoCo :: Test :: Core</name> 27 <jacoco.includes>org.jacoco.core.*</jacoco.includes> 33 <artifactId>org.jacoco.core</artifactId> 54 <exclude>org/jacoco/core/test/validation/java8/*.java</exclude [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.1.201405082137/ |
org.jacoco.ant-0.7.1.201405082137.pom | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.3.201501221555/ |
org.jacoco.ant-0.7.3.201501221555.pom | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/ |
org.jacoco.ant-0.7.4.201502262128.pom | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.5.201505241946/ |
org.jacoco.ant-0.7.5.201505241946.pom | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.6.201602180812/ |
org.jacoco.ant-0.7.6.201602180812.pom | 16 <groupId>org.jacoco</groupId> 17 <artifactId>org.jacoco.build</artifactId> 19 <relativePath>../org.jacoco.build</relativePath> 22 <artifactId>org.jacoco.ant</artifactId> 24 <name>JaCoCo :: Ant</name> 25 <description>JaCoCo Ant Tasks</description> 30 <artifactId>org.jacoco.core</artifactId> 34 <artifactId>org.jacoco.report</artifactId> 38 <artifactId>org.jacoco.agent</artifactId> 67 <shadedPattern>org.jacoco.asm</shadedPattern [all...] |