Home
last modified time | relevance | path

Searched refs:covered (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DCounterImpl.java49 public Var(final int missed, final int covered) { in Var() argument
50 super(missed, covered); in Var()
54 public CounterImpl increment(final int missed, final int covered) { in increment() argument
56 this.covered += covered; in increment()
65 public Fix(final int missed, final int covered) { in Fix() argument
66 super(missed, covered); in Fix()
70 public CounterImpl increment(final int missed, final int covered) { in increment() argument
71 return getInstance(this.missed + missed, this.covered + covered); in increment()
84 public static CounterImpl getInstance(final int missed, final int covered) { in getInstance() argument
85 if (missed <= SINGLETON_LIMIT && covered <= SINGLETON_LIMIT) { in getInstance()
[all …]
DMethodAnalyzer.java276 final int covered = i.getCoveredBranches(); in visitEnd() local
277 final ICounter instrCounter = covered == 0 ? CounterImpl.COUNTER_1_0 in visitEnd()
280 total - covered, covered) : CounterImpl.COUNTER_0_0; in visitEnd()
/external/llvm/test/tools/sancov/
Dcovered_functions.test2 RUN: sancov -obj %p/Inputs/test-linux_x86_64 -covered-functions %p/Inputs/test-linux_x86_64.sancov …
3 RUN: sancov -obj %p/Inputs/test-linux_x86_64 -covered-functions -strip_path_prefix=Inputs/ %p/Input…
4 RUN: sancov -obj %p/Inputs/test-linux_x86_64 -demangle=0 -covered-functions %p/Inputs/test-linux_x8…
Dnot_covered_functions.test2 RUN: sancov -obj %p/Inputs/test-linux_x86_64 -not-covered-functions %p/Inputs/test-linux_x86_64.san…
3 RUN: sancov -obj %p/Inputs/test-linux_x86_64 -not-covered-functions %p/Inputs/test-linux_x86_64-1.s…
/external/eigen/
DCOPYING.GPL89 A "covered work" means either the unmodified Program or a work based
160 covered work is covered by this License only if the output, given its
161 content, constitutes a covered work. This License acknowledges your
164 You may make, run and propagate covered works that you do not
166 in force. You may convey covered works to others for the sole purpose
170 not control copyright. Those thus making or running the covered works
181 No covered work shall be deemed part of an effective technological
187 When you convey a covered work, you waive any legal power to forbid
190 the covered work, and you disclaim any intention to limit operation or
235 A compilation of a covered work with other separate and independent
[all …]
/external/chromium-trace/catapult/tracing/third_party/jszip/
DLICENSE.markdown119 A "covered work" means either the unmodified Program or a work based
190 covered work is covered by this License only if the output, given its
191 content, constitutes a covered work. This License acknowledges your
194 You may make, run and propagate covered works that you do not
196 in force. You may convey covered works to others for the sole purpose
200 not control copyright. Those thus making or running the covered works
211 No covered work shall be deemed part of an effective technological
217 When you convey a covered work, you waive any legal power to forbid
220 the covered work, and you disclaim any intention to limit operation or
265 A compilation of a covered work with other separate and independent
[all …]
/external/elfutils/
DCOPYING89 A "covered work" means either the unmodified Program or a work based
160 covered work is covered by this License only if the output, given its
161 content, constitutes a covered work. This License acknowledges your
164 You may make, run and propagate covered works that you do not
166 in force. You may convey covered works to others for the sole purpose
170 not control copyright. Those thus making or running the covered works
181 No covered work shall be deemed part of an effective technological
187 When you convey a covered work, you waive any legal power to forbid
190 the covered work, and you disclaim any intention to limit operation or
235 A compilation of a covered work with other separate and independent
[all …]
/external/bison/
DNOTICE89 A "covered work" means either the unmodified Program or a work based
160 covered work is covered by this License only if the output, given its
161 content, constitutes a covered work. This License acknowledges your
164 You may make, run and propagate covered works that you do not
166 in force. You may convey covered works to others for the sole purpose
170 not control copyright. Those thus making or running the covered works
181 No covered work shall be deemed part of an effective technological
187 When you convey a covered work, you waive any legal power to forbid
190 the covered work, and you disclaim any intention to limit operation or
235 A compilation of a covered work with other separate and independent
[all …]
DCOPYING89 A "covered work" means either the unmodified Program or a work based
160 covered work is covered by this License only if the output, given its
161 content, constitutes a covered work. This License acknowledges your
164 You may make, run and propagate covered works that you do not
166 in force. You may convey covered works to others for the sole purpose
170 not control copyright. Those thus making or running the covered works
181 No covered work shall be deemed part of an effective technological
187 When you convey a covered work, you waive any legal power to forbid
190 the covered work, and you disclaim any intention to limit operation or
235 A compilation of a covered work with other separate and independent
[all …]
/external/dnsmasq/
DCOPYING-v389 A "covered work" means either the unmodified Program or a work based
160 covered work is covered by this License only if the output, given its
161 content, constitutes a covered work. This License acknowledges your
164 You may make, run and propagate covered works that you do not
166 in force. You may convey covered works to others for the sole purpose
170 not control copyright. Those thus making or running the covered works
181 No covered work shall be deemed part of an effective technological
187 When you convey a covered work, you waive any legal power to forbid
190 the covered work, and you disclaim any intention to limit operation or
235 A compilation of a covered work with other separate and independent
[all …]
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dannotate.py75 covered = True
83 covered = j >= len(missing) or missing[j] > lineno
98 elif covered:
/external/bison/doc/
Dgpl-3.0.texi98 A ``covered work'' means either the unmodified Program or a work based
169 covered work is covered by this License only if the output, given its
170 content, constitutes a covered work. This License acknowledges your
173 You may make, run and propagate covered works that you do not convey,
175 You may convey covered works to others for the sole purpose of having
179 control copyright. Those thus making or running the covered works for
190 No covered work shall be deemed part of an effective technological
196 When you convey a covered work, you waive any legal power to forbid
199 respect to the covered work, and you disclaim any intention to limit
251 A compilation of a covered work with other separate and independent
[all …]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
DPercentageColumnTest.java141 private ITableItem createItem(final int missed, final int covered) { in createItem() argument
142 final ICoverageNode node = createNode(missed, covered); in createItem()
162 private CoverageNodeImpl createNode(final int missed, final int covered) {
165 this.lineCounter = CounterImpl.getInstance(missed, covered);
DBarColumnTest.java207 private ITableItem createItem(final int missed, final int covered) { in createItem() argument
208 final ICoverageNode node = createNode(missed, covered); in createItem()
228 private CoverageNodeImpl createNode(final int missed, final int covered) {
231 this.lineCounter = CounterImpl.getInstance(missed, covered);
DCounterColumnTest.java199 private ITableItem createItem(final int missed, final int covered) {
200 final ICoverageNode node = createNode(missed, covered);
220 private CoverageNodeImpl createNode(final int missed, final int covered) {
223 this.lineCounter = CounterImpl.getInstance(missed, covered);
/external/skia/src/images/
DSkMovie_gif.cpp294 static bool checkIfCover(const SavedImage* target, const SavedImage* covered) in checkIfCover() argument
296 if (target->ImageDesc.Left <= covered->ImageDesc.Left in checkIfCover()
297 && covered->ImageDesc.Left + covered->ImageDesc.Width <= in checkIfCover()
299 && target->ImageDesc.Top <= covered->ImageDesc.Top in checkIfCover()
300 && covered->ImageDesc.Top + covered->ImageDesc.Height <= in checkIfCover()
/external/chromium-trace/catapult/third_party/coverage/
Dmetacov.ini16 # pragma: not covered
24 # pragma: part covered
/external/compiler-rt/lib/sanitizer_common/scripts/
Dsancov.py205 covered = set(int(line, 16) for line in sys.stdin)
206 print >> sys.stderr, "%s: read %d PCs from stdin" % (prog_name, len(covered))
207 missing = instrumented - covered
209 if (len(missing) > len(instrumented) - len(covered)):
/external/bison/m4/
Dnls.m412 dnl Please note that the actual code of the GNU gettext library is covered
14 dnl gettext package package is covered by the GNU General Public License.
/external/elfutils/m4/
Dnls.m411 dnl Please note that the actual code of the GNU gettext library is covered
13 dnl gettext package package is covered by the GNU General Public License.
Dlcmessage.m413 dnl Please note that the actual code of the GNU gettext library is covered
15 dnl gettext package package is covered by the GNU General Public License.
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DClassCoverageImplTest.java97 private MethodCoverageImpl createMethod(boolean covered) { in createMethod() argument
101 covered ? CounterImpl.COUNTER_0_1 : CounterImpl.COUNTER_1_0, in createMethod()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
DBarColumn.java90 final int covered = counter.getCoveredCount(); in item() local
91 bar(td, covered, Resources.GREENBAR, resources, base); in item()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.buffers.txt38 - Will be covered in 2012.3 release
40 - Will be covered in separate negative API test set
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DCounterComparatorTest.java121 private CounterImpl ctr(int missed, int covered) { in ctr() argument
122 return CounterImpl.getInstance(missed, covered); in ctr()

12345678910>>...13