| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_hotshot.py | 118 coverage = hotshot._hotshot.coverage 122 self.assertRaises(RuntimeError, coverage, test_support.TESTFN) 125 self.assertRaises(RuntimeError, coverage, test_support.TESTFN)
|
| /development/testrunner/test_defs/ |
| instrumentation_test.py | 25 from coverage import coverage namespace 76 Used for generating code coverage metrics. 130 if options.coverage: 131 instrumentation_args["coverage"] = "true" 143 elif options.coverage: 144 coverage_gen = coverage.CoverageGenerator(adb) 150 # need to parse test output to determine path to coverage file 151 logger.Log("Running in coverage mode, suppressing test output") 163 logger.Log("Error: could not find coverage data on device" [all...] |
| /external/deqp/framework/referencerenderer/ |
| rrRasterizer.cpp | 528 // Coverage 529 deUint64 coverage = 0; 539 // Compute coverage mask 540 coverage = setCoverageValue(coverage, 1, 0, 0, 0, isInsideCCW(m_edge01, e01[0]) && isInsideCCW(m_edge12, e12[0]) && isInsideCCW(m_edge20, e20[0])); 541 coverage = setCoverageValue(coverage, 1, 1, 0, 0, !outX1 && isInsideCCW(m_edge01, e01[1]) && isInsideCCW(m_edge12, e12[1]) && isInsideCCW(m_edge20, e20[1])); 542 coverage = setCoverageValue(coverage, 1, 0, 1, 0, !outY1 && isInsideCCW(m_edge01, e01[2]) && isInsideCCW(m_edge12, e12[2]) && isInsideCCW(m_edge20, e20[2])); 543 coverage = setCoverageValue(coverage, 1, 1, 1, 0, !outX1 && !outY1 && isInsideCCW(m_edge01, e01[3]) && isIn (…) [all...] |
| /external/chromium_org/third_party/skia/include/gpu/ |
| GrPaint.h | 19 * The paint describes how color and coverage are computed at each pixel by GrContext draw 22 * The paint allows installation of custom color and coverage stages. New types of stages are 30 * Fractional pixel coverage follows a similar flow. The coverage is initially the value specified 31 * by setCoverage(). This is input to the first coverage stage. Coverage stages are chained 33 * fractional coverage produced by anti-aliasing. This last step produces the final coverage, C. 39 * Note that the coverage is applied after the blend. This is why they are computed as distinct 70 * Applies fractional coverage to the entire drawn primitive. Defaults to 0xff [all...] |
| /external/emma/core/java12/com/vladium/emma/report/ |
| ClassItem.java | 27 public ClassItem (final IItem parent, final ClassDescriptor cls, final boolean [][] coverage) 32 m_coverage = coverage;
|
| /external/emma/core/java12/com/vladium/emma/rt/ |
| RT.java | 61 // 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) 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/skia/include/gpu/ |
| GrPaint.h | 19 * The paint describes how color and coverage are computed at each pixel by GrContext draw 22 * The paint allows installation of custom color and coverage stages. New types of stages are 30 * Fractional pixel coverage follows a similar flow. The coverage is initially the value specified 31 * by setCoverage(). This is input to the first coverage stage. Coverage stages are chained 33 * fractional coverage produced by anti-aliasing. This last step produces the final coverage, C. 39 * Note that the coverage is applied after the blend. This is why they are computed as distinct 70 * Applies fractional coverage to the entire drawn primitive. Defaults to 0xff [all...] |
| /external/vixl/tools/ |
| test.py | 54 result.add_argument('--coverage', action='store_true', 55 help='Run coverage tests.') 177 # Delete coverage data files. 178 if args.coverage: 179 status, output = util.getstatusoutput('find obj/coverage -name "*.gcda" -exec rm {} \;') 185 # Print coverage information. 186 if args.coverage: 187 cmd = 'tggcov -R summary_all,untested_functions_per_file obj/coverage/src/a64'
|
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
| phystokens.py | 1 """Better tokenizing for coverage.py.""" 4 from coverage.backward import StringIO # pylint: disable=W0622
|
| /external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
| s_aalinetemp.h | 42 const GLfloat coverage = compute_coveragef(line, ix, iy); local 47 if (coverage == 0.0) 51 line->span.array->coverage[i] = coverage;
|
| s_points.c | 325 /* compute coverage for each pixel in span */ 330 GLfloat coverage; local 334 /* compute partial coverage */ 335 coverage = 1.0F - (dist2 - rmin2) * cscale; 338 /* full coverage */ 339 coverage = 1.0F; 344 /* zero coverage - fragment outside the radius */ 345 coverage = 0.0; 348 span.array->coverage[ix - xmin] = coverage; [all...] |
| s_span.h | 57 #define SPAN_COVERAGE 0x40 /**< array.coverage[] valid? */ 92 GLfloat coverage[SWRAST_MAX_WIDTH]; /**< Fragment coverage for AA/smoothing */ member in struct:sw_span_arrays
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_coverage_libcdep.cc | 10 // Sanitizer Coverage. 11 // This file implements run-time support for a poor man's coverage tool. 23 // - __sanitizer_cov_dump: dump the coverage data to disk. 24 // For every module of the current process that has coverage data 28 // Eventually, this coverage implementation should be obsoleted by a more 29 // powerful general purpose Clang/LLVM coverage instrumentation. 102 Report(" Coverage: failed to open %s for writing\n", path.data()); 147 // Extend coverage PC array to fit additional npcs elements. 166 Printf("failed to extend raw coverage file: %d\n", err); 272 // Dump the coverage on disk [all...] |
| /external/mesa3d/src/mesa/swrast/ |
| s_aalinetemp.h | 42 const GLfloat coverage = compute_coveragef(line, ix, iy); local 47 if (coverage == 0.0) 51 line->span.array->coverage[i] = coverage;
|
| s_points.c | 325 /* compute coverage for each pixel in span */ 330 GLfloat coverage; local 334 /* compute partial coverage */ 335 coverage = 1.0F - (dist2 - rmin2) * cscale; 338 /* full coverage */ 339 coverage = 1.0F; 344 /* zero coverage - fragment outside the radius */ 345 coverage = 0.0; 348 span.array->coverage[ix - xmin] = coverage; [all...] |
| /external/chromium_org/third_party/skia/src/gpu/ |
| GrDrawState.h | 120 * it may or may not be possible to correctly blend with fractional pixel coverage generated by 124 * determine whether coverage can be handled correctly. This function assumes that the caller 125 * intends to specify fractional pixel coverage (via setCoverage(), through a coverage vertex 126 * attribute, or a coverage effect) but may not have specified it yet. 159 /// @name Coverage 163 * Sets a constant fractional coverage to be applied to the draw. The 165 * coverage is ignored when per-vertex coverage is provided. 167 void setCoverage(uint8_t coverage) { [all...] |
| /frameworks/minikin/libs/minikin/ |
| FontCollection.cpp | 57 const SparseBitSet* coverage = family->getCoverage(); local 58 mMaxChar = max(mMaxChar, coverage->length()); 59 lastChar.push_back(coverage->nextSetBit(0)); 180 // Continue using existing font as long as it has coverage and is whitelisted
|
| /external/chromium_org/v8/tools/ |
| run-deopt-fuzzer.py | 166 result.add_option("--coverage", help=("Exponential test coverage " 169 result.add_option("--coverage-lift", help=("Lifts test coverage for tests " 260 if options.coverage < 0.0 or options.coverage > 1.0: 261 print ("Coverage %s is out of range. Defaulting to 0.4" 262 % options.coverage) 263 options.coverage = 0.4 265 print ("Coverage lift %s is out of range. Defaulting to 0 [all...] |
| /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/ |
| OpenTypeVerticalData.cpp | 135 const CoverageTable* coverage(const SharedBuffer& buffer) const { return validateOffset<CoverageTable>(buffer, coverageOffset); } function in struct:blink::OpenType::SubstitutionSubTable 161 const CoverageTable* coverage = substitution->coverage(buffer); local 162 if (!coverage) 172 switch (coverage->coverageFormat) { 173 case 1: { // Coverage Format 1 (e.g., MS Gothic) 174 const Coverage1Table* coverage1 = validatePtr<Coverage1Table>(buffer, coverage); 184 case 2: { // Coverage Format 2 (e.g., Adobe Kozuka Gothic) 185 const Coverage2Table* coverage2 = validatePtr<Coverage2Table>(buffer, coverage);
|
| /system/core/libpixelflinger/ |
| trap.cpp | 174 // This way of computing the coverage factor, is more accurate and gives 234 int16_t* covPtr = c->state.buffers.coverage; 244 // compute coverage factors for each pixel 257 // This is a cheap way of computing the coverage factor for a circle. 299 int16_t* covPtr = c->state.buffers.coverage; 317 // compute coverage factors for each pixel 949 * coverage values may not be correct. 980 int16_t* const covPtr = c->state.buffers.coverage; 993 int16_t* coverage; local 1019 // make sure we're not touching coverage values outside of th [all...] |
| /development/testrunner/coverage/ |
| coverage.py | 18 """Utilities for generating code coverage reports for Android tests.""" 36 """Helper utility for obtaining code coverage results on Android. 39 coverage results for a pre-defined set of tests and targets 45 # root path of generated coverage report files, relative to Android build root 74 """Extract runtime coverage data and generate code coverage report. 78 test_suite_name: name of TestSuite to generate coverage data for 79 target: the CoverageTarget to use as basis for coverage calculation 80 device_coverage_path: location of coverage file on device 112 """Generate the code coverage report [all...] |
| /external/chromium_org/v8/tools/unittests/ |
| run_perf_test.py | 7 import coverage namespace 17 # Requires python-coverage and python-mock. Native python coverage 87 cls._cov = coverage.coverage(
|
| /external/skia/src/gpu/gl/ |
| GrGLShaderBuilder.h | 335 * The subclass can modify the initial color or coverage 337 virtual void emitCodeBeforeEffects(GrGLSLExpr4* color, GrGLSLExpr4* coverage) = 0; 465 virtual void emitCodeBeforeEffects(GrGLSLExpr4* color, GrGLSLExpr4* coverage) SK_OVERRIDE; 510 virtual void emitCodeBeforeEffects(GrGLSLExpr4* color, GrGLSLExpr4* coverage) SK_OVERRIDE {}
|
| /external/chromium_org/third_party/lcov/example/ |
| Makefile | 11 CFLAGS := -Wall -I. -fprofile-arcs -ftest-coverage
|
| /external/chromium_org/third_party/skia/src/gpu/gl/ |
| GrGLProgram.h | 66 * and coverage attributes can be global state. This struct is read and updated by 152 * GrGpuGL object to bind the textures required by the GrGLProcessors. The color and coverage 177 // Helper for setData(). Makes GL calls to specify the initial coverage when there is not 179 void setCoverage(const GrOptDrawState&, GrColor coverage, SharedGLState*);
|