Searched defs:coverage (Results 1 - 25 of 74) sorted by relevance

123

/external/deqp/framework/referencerenderer/
H A DrrFragmentPacket.hpp53 deUint64 coverage; //!< Coverage mask. member in struct:rr::FragmentPacket
H A DrrFragmentOperations.hpp51 deUint32 coverage; member in struct:rr::Fragment
58 , coverage (coverage_)
67 , coverage (coverage_)
75 , coverage (0)
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DICoverageVisitor.java15 * Interface for coverage data output as a stream of {@link IClassCoverage}
21 * For analyzed class coverage data is emitted to this method.
23 * @param coverage
24 * coverage data for a class
26 public void visitCoverage(IClassCoverage coverage); argument
H A DCoverageBuilder.java100 public void visitCoverage(final IClassCoverage coverage) { argument
102 if (coverage.getInstructionCounter().getTotalCount() > 0) {
103 final String name = coverage.getName();
104 final IClassCoverage dup = classes.put(name, coverage);
105 if (dup != null && dup.getId() != coverage.getId()) {
109 final String source = coverage.getSourceFileName();
112 coverage.getPackageName());
113 sourceFile.increment(coverage);
/external/v8/tools/release/
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/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingWriter.h1 //=-- CoverageMappingWriter.h - Code coverage mapping writer ------*- C++ -*-=//
10 // This file contains support for writing coverage mapping data for
11 // instrumentation based coverage.
24 namespace coverage { namespace in namespace:llvm
27 /// based code coverage.
39 /// \brief Writer for instrumentation based coverage mapping data.
56 /// \brief Write encoded coverage mapping data to the given output stream.
60 } // end namespace coverage
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
H A DClassInfo.java57 public void visitCoverage(final IClassCoverage coverage) { argument
58 out.printf("class name: %s%n", coverage.getName());
59 out.printf("class id: %016x%n", Long.valueOf(coverage.getId()));
60 out.printf("instructions: %s%n", Integer.valueOf(coverage
63 Integer.valueOf(coverage.getBranchCounter().getTotalCount()));
65 Integer.valueOf(coverage.getLineCounter().getTotalCount()));
67 Integer.valueOf(coverage.getMethodCounter().getTotalCount()));
68 out.printf("complexity: %s%n%n", Integer.valueOf(coverage
/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/src/core/
H A DSkDrawProcs.h15 SkScalar* coverage);
19 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
20 * a stroke by drawing a hairline with partial coverage). If any of these
21 * conditions are false, then this returns false and coverage is ignored.
24 SkScalar* coverage) {
31 *coverage = SK_Scalar1;
39 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
23 SkDrawTreatAsHairline(const SkPaint& paint, const SkMatrix& matrix, SkScalar* coverage) argument
/external/compiler-rt/lib/asan/
H A Dasan_activation.cc29 bool coverage; member in struct:__asan::AsanDeactivatedFlags
55 cf.coverage = coverage;
74 coverage = cf.coverage;
82 "allocator_may_return_null %d, coverage %d, coverage_dir %s\n",
86 allocator_options.may_return_null, coverage, coverage_dir);
100 asan_deactivated_flags.coverage = common_flags()->coverage;
129 ReInitializeCoverage(asan_deactivated_flags.coverage,
[all...]
/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/icu/icu4c/source/common/
H A Dservslkf.cpp37 int32_t coverage)
38 : LocaleKeyFactory(coverage)
48 int32_t coverage)
49 : LocaleKeyFactory(coverage)
34 SimpleLocaleKeyFactory(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage) argument
45 SimpleLocaleKeyFactory(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage) argument
H A Dservlkf.cpp32 LocaleKeyFactory::LocaleKeyFactory(int32_t coverage) argument
34 , _coverage(coverage)
38 LocaleKeyFactory::LocaleKeyFactory(int32_t coverage, const UnicodeString& name) argument
40 , _coverage(coverage)
133 result.append((UnicodeString)", coverage: ");
/external/emma/core/java12/com/vladium/emma/report/
H A DClassItem.java27 public ClassItem (final IItem parent, final ClassDescriptor cls, final boolean [][] coverage) argument
32 m_coverage = coverage;
/external/emma/core/java12/com/vladium/emma/rt/
H A DRT.java61 // note: no attempt is made to execute the existing hook, so its coverage
86 // FR SF978671: fault all classes that we might need to do coverage
105 public static void r (final boolean [][] coverage, final String classVMName, final long stamp) argument
126 cdata.addClass (coverage, classVMName, stamp);
142 * Public API for forcing coverage data dump.
237 // load app props, create coverage data, and register an exit hook for it:
244 log.info ("collecting runtime coverage data ...");
/external/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage; local
100 coverage = FT_NEXT_USHORT( p );
111 if ( ( coverage & ~8U ) != 0x0001 ||
202 FT_UInt coverage = FT_NEXT_USHORT( p ); local
226 switch ( coverage >> 8 )
292 if ( coverage & 8 ) /* override or add */
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/
H A DJacocoReportCheck.java9 package com.ibm.icu.dev.tool.coverage;
38 * signals failure if there are any methods with no test coverage (and not included
39 * in 'coverage-exclusion.txt').
48 System.out.println("Checking method coverage in " + args[0]);
104 // no test coverage
118 System.out.println("// Methods with no test coverage, not included in the exclusion set");
134 System.out.println("Method coverage check finished");
137 System.err.println("Error: Found method(s) with no test coverage");
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DClassAnalyzer.java31 private ClassCoverageImpl coverage; field in class:ClassAnalyzer
34 * Creates a new analyzer that builds coverage data for a class.
55 * Returns the coverage data for this class after this visitor has been
58 * @return coverage data for this class
61 return coverage;
68 this.coverage = new ClassCoverageImpl(stringPool.get(name), classid,
75 this.coverage.setSourceFileName(stringPool.get(source));
82 InstrSupport.assertNotInstrumented(name, coverage.getName());
96 coverage.addMethod(methodCoverage);
111 InstrSupport.assertNotInstrumented(name, coverage
[all...]
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
H A DAnalyzerTest.java61 public void visitCoverage(IClassCoverage coverage) { argument
62 final String name = coverage.getName();
64 classes.put(name, coverage));
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad.h60 * Quad stage inputs (pos, coverage, front/back face, etc)
65 float coverage[TGSI_QUAD_SIZE]; /**< fragment coverage for antialiasing */ member in struct:quad_header_input
/external/mesa3d/src/mesa/swrast/
H A Ds_aalinetemp.h42 const GLfloat coverage = compute_coveragef(line, ix, iy); local
47 if (coverage == 0.0)
51 line->span.array->coverage[i] = coverage;
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage; local
100 coverage = FT_NEXT_USHORT( p );
111 if ( ( coverage & ~8U ) != 0x0001 ||
202 FT_UInt coverage = FT_NEXT_USHORT( p ); local
226 switch ( coverage >> 8 )
292 if ( coverage & 8 ) /* override or add */
/external/skia/samplecode/
H A DSampleAAGeometry.cpp456 static void add_to_map(SkScalar coverage, int x, int y, uint8_t* distanceMap, int w, int h) { argument
457 int byteCoverage = (int) (coverage * 256);
1313 // given a line, compute the interior and exterior gradient coverage
1314 bool coverage(SkPoint s, SkPoint e, uint8_t* distanceMap, int w, int h) {
1324 SkScalar coverage = ptToLineDist / radius;
1325 add_to_map(1 - SkScalarAbs(coverage), x, y, distanceMap, w, h);
1330 SkScalar coverage = dist / radius;
1331 add_to_map(1 - SkScalarAbs(coverage), x, y, distanceMap, w, h);
1336 SkScalar coverage = dist / radius;
1337 add_to_map(1 - SkScalarAbs(coverage),
[all...]
/external/skia/src/gpu/
H A DGrDefaultGeoProcFactory.h15 * view matrix and wire through color, coverage, UV coords if requested.
84 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {} argument

Completed in 2816 milliseconds

123