Searched refs:coverage (Results 1 - 25 of 163) sorted by relevance

1234567

/external/chromium-trace/trace-viewer/third_party/webapp2/
H A DMakefile2 coverage run run_tests.py
3 coverage report -m
/external/llvm/utils/lit/utils/
H A Dcheck-coverage22 # Check that the active python has been modified to enable coverage in its
25 'import sitecustomize, sys; sys.exit("coverage" not in dir(sitecustomize))' \
27 printf 1>&2 "error: active python does not appear to enable coverage in its 'sitecustomize.py'\n"
31 # First, remove any existing coverage data files.
32 rm -f tests/.coverage
33 find tests -name .coverage.\* -exec rm {} \;
36 lit -sv --param check-coverage=1 "$@"
39 find tests/* -name .coverage.\* -exec mv {} tests \;
42 (cd tests && python -m coverage combine)
45 (cd tests && python -m coverage repor
[all...]
/external/nanopb-c/tests/
H A DMakefile7 coverage:
8 rm -rf build coverage
17 mkdir build/coverage
18 lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/nanopb.info
21 genhtml -o build/coverage build/coverage/nanopb.info
/external/emma/core/java12/com/vladium/emma/data/
H A DICoverageData.java22 public DataHolder (final boolean [][] coverage, final long stamp) argument
24 m_coverage = coverage;
45 //void setImmutable (); // TODO: this only disables addClass(), not coverage array updates; rename
46 void addClass (boolean [][] coverage, String classVMName, long stamp); argument
H A DCoverageData.java71 public void addClass (final boolean [][] coverage, final String classVMName, final long stamp) argument
73 m_coverageMap.put (classVMName, new DataHolder (coverage, stamp));
117 final boolean [][] coverage = data.m_coverage;
119 // [assertion: both coverage and rhscoverage aren't null]
121 if ($assert.ENABLED) $assert.ASSERT (coverage.length == rhscoverage.length, "coverage.length [" + coverage.length + "] != rhscoverage.length [" + rhscoverage.length + "]");
122 for (int m = 0, mLimit = coverage.length; m < mLimit; ++ m)
125 final boolean [] mcoverage = coverage [m];
175 final boolean [][] coverage
[all...]
/external/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp1 //===- CoverageFilters.cpp - Function coverage mapping filters ------------===//
10 // These classes provide filtering for function coverage mapping records.
20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) {
26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) {
30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) {
35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) {
44 bool CoverageFilters::matches(const coverage::FunctionRecord &Function) {
53 CoverageFiltersMatchAll::matches(const coverage::FunctionRecord &Function) {
H A DCoverageFilters.h1 //===- CoverageFilters.h - Function coverage mapping filters --------------===//
10 // These classes provide filtering for function coverage mapping records.
29 virtual bool matches(const coverage::FunctionRecord &Function) {
41 bool matches(const coverage::FunctionRecord &Function) override;
51 bool matches(const coverage::FunctionRecord &Function) override;
79 /// \brief Matches functions whose region coverage percentage
87 bool matches(const coverage::FunctionRecord &Function) override;
90 /// \brief Matches functions whose line coverage percentage
98 bool matches(const coverage::FunctionRecord &Function) override;
114 bool matches(const coverage
[all...]
H A DCoverageReport.h1 //===- CoverageReport.h - Code coverage report ---------------------------===//
10 // This class implements rendering of a code coverage report.
22 /// \brief Displays the code coverage report.
25 std::unique_ptr<coverage::CoverageMapping> Coverage;
32 std::unique_ptr<coverage::CoverageMapping> Coverage)
H A DSourceCoverageView.h1 //===- SourceCoverageView.h - Code coverage view for source code ----------===//
10 // This class implements rendering for code coverage of source code.
28 coverage::CounterMappingRegion Region;
31 ExpansionView(const coverage::CounterMappingRegion &Region,
76 /// \brief A code coverage view of a specific source file.
77 /// It can have embedded coverage views.
106 coverage::CoverageData CoverageInfo;
112 const coverage::CoverageSegment *WrappedSegment,
113 ArrayRef<const coverage::CoverageSegment *> Segments,
129 ArrayRef<const coverage
[all...]
/external/icu/icu4c/source/layout/
H A DSubtableProcessor.cpp19 : length(0), coverage(0), subtableFeatures(0L), subtableHeader(morphSubtableHeader)
23 coverage = SWAPW(subtableHeader->coverage);
H A DSubtableProcessor2.cpp19 : length(0), coverage(0), subtableFeatures(0L), subtableHeader(morphSubtableHeader, success)
24 coverage = SWAPL(subtableHeader->coverage);
H A DMorphTables.cpp41 SubtableCoverage coverage = SWAPW(subtableHeader->coverage); local
44 // should check coverage more carefully...
45 if ((coverage & scfVertical) == 0 && (subtableFeatures & defaultFlags) != 0 && LE_SUCCESS(success)) {
59 switch (SWAPW(coverage) & scfTypeMask)
/external/deqp/framework/referencerenderer/
H A DrrFragmentPacket.hpp53 deUint64 coverage; //!< Coverage mask. member in struct:rr::FragmentPacket
/external/v8/tools/push-to-trunk/
H A Dscript_test.py29 # Wraps test execution with a coverage analysis. To get the best speed, the
30 # native python coverage version >= 3.7.1 should be installed.
32 import coverage namespace
40 cov = coverage.coverage(include=([os.path.join(script_path, '*.py')]))
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.inc111 bool, coverage, false,
112 "If set, coverage information will be dumped at program shutdown (if the "
113 "coverage instrumentation was enabled at compile time).")
115 "If set (and if 'coverage' is set too), the coverage information "
121 "If set (and if 'coverage' is set too), the coverage information "
124 "If set (and if 'coverage' is set too), the bitmap that corresponds"
125 " to coverage counters will be dumped.")
127 "If set, coverage informatio
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_activation.cc29 bool coverage; member in struct:__asan::AsanDeactivatedFlags
54 cf.coverage = coverage;
78 coverage = cf.coverage;
86 "allocator_may_return_null %d, coverage %d, coverage_dir %s\n",
90 allocator_options.may_return_null, coverage, coverage_dir);
104 asan_deactivated_flags.coverage = common_flags()->coverage;
131 ReInitializeCoverage(asan_deactivated_flags.coverage,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dgen6_multisample_state.c118 unsigned num_samples, float coverage,
126 int coverage_int = (int) (num_samples * coverage + 0.5);
142 float coverage = 1.0; local
150 coverage = ctx->Multisample.SampleCoverageValue;
158 gen6_emit_3dstate_sample_mask(brw, num_samples, coverage, coverage_invert);
117 gen6_emit_3dstate_sample_mask(struct brw_context *brw, unsigned num_samples, float coverage, bool coverage_invert) argument
/external/skia/experimental/AndroidPathRenderer/
H A DGrAndroidPathRenderer.cpp42 // position + coverage
74 int coverage = static_cast<int>(inVert->alpha * 0xff); local
75 outVert->color = GrColorPackRGBA(coverage, coverage, coverage, coverage);
/external/skia/include/gpu/
H A DGrTestUtils.h88 uint8_t coverage; local
91 coverage = 0;
93 coverage = 0xff;
96 coverage = random->nextULessThan(256);
99 return coverage;
/external/icu/icu4c/source/common/
H A Dservslkf.cpp35 int32_t coverage)
36 : LocaleKeyFactory(coverage)
46 int32_t coverage)
47 : LocaleKeyFactory(coverage)
32 SimpleLocaleKeyFactory(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage) argument
43 SimpleLocaleKeyFactory(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage) argument
/external/skia/src/core/
H A DSkDrawProcs.h63 SkScalar* coverage);
67 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
68 * a stroke by drawing a hairline with partial coverage). If any of these
69 * conditions are false, then this returns false and coverage is ignored.
72 SkScalar* coverage) {
79 *coverage = SK_Scalar1;
87 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
71 SkDrawTreatAsHairline(const SkPaint& paint, const SkMatrix& matrix, SkScalar* coverage) argument
/external/skia/tools/
H A Dcoverage.sh4 # $ tools/coverage.sh tests
6 # $ tools/coverage.sh gm
24 # Running the binary generates the real coverage information, the .gcda files.
26 lcov $QUIET --gcov-tool=$GCOV -c -b out/Coverage -d out/Coverage -o /tmp/coverage
28 lcov $QUIET -a /tmp/baseline -a /tmp/coverage -o /tmp/merged
H A Dnanobench_flags.py28 cov_start = lineno()+1 # We care about coverage starting just past this def.
73 cov_end = lineno() # Don't care about code coverage past here.
77 import coverage # This way the bots don't need coverage.py to be installed. namespace
86 cov = coverage.coverage()
/external/skia/src/gpu/effects/
H A DGrBezierEffect.h66 uint8_t coverage = 0xff) {
72 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
79 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
83 return SkNEW_ARGS(GrConicEffect, (color, viewMatrix, coverage,
114 GrConicEffect(GrColor, const SkMatrix& viewMatrix, uint8_t coverage, GrPrimitiveEdgeType,
148 uint8_t coverage = 0xff) {
154 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
161 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
165 return SkNEW_ARGS(GrQuadEffect, (color, viewMatrix, coverage,
196 GrQuadEffect(GrColor, const SkMatrix& viewMatrix, uint8_t coverage, GrPrimitiveEdgeTyp
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsub-table.hh44 for (iter.init (this+coverage); iter.more (); iter.next ()) {
55 for (iter.init (this+coverage); iter.more (); iter.next ()) {
64 return this+coverage;
70 return TRACE_RETURN (c->len == 1 && (this+coverage).get_coverage (c->glyphs[0]) != NOT_COVERED);
77 unsigned int index = (this+coverage).get_coverage (glyph_id);
95 if (unlikely (!coverage.serialize (c, this).serialize (c, glyphs, num_glyphs))) return TRACE_RETURN (false);
102 return TRACE_RETURN (coverage.sanitize (c, this) && deltaGlyphID.sanitize (c));
108 coverage; /* Offset to Coverage table--from member in struct:OT::SingleSubstFormat1
122 for (iter.init (this+coverage); iter.more (); iter.next ()) {
132 for (iter.init (this+coverage); ite
184 coverage; /* Offset to Coverage table--from member in struct:OT::SingleSubstFormat2
395 coverage; /* Offset to Coverage table--from member in struct:OT::MultipleSubstFormat1
546 coverage; /* Offset to Coverage table--from member in struct:OT::AlternateSubstFormat1
859 coverage; /* Offset to Coverage table--from member in struct:OT::LigatureSubstFormat1
1034 coverage; /* Offset to Coverage table--from member in struct:OT::ReverseChainSingleSubstFormat1
1190 const Coverage *coverage = &get_subtable (i).dispatch (&c, get_type ()); local
[all...]

Completed in 742 milliseconds

1234567