HomeSort by relevance Sort by last modified time
    Searched refs:coverage (Results 276 - 300 of 741) sorted by null

<<11121314151617181920>>

  /external/freetype/src/smooth/
ftgrays.c 48 /* coverage of the outline on each pixel cell. */
57 /* compared to Raph's. Coverage information is stored in a very */
69 /* - A perfect anti-aliaser, i.e., it computes the _exact_ coverage on */
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 228 // If printTests is set, we record the coverage value
230 // coverage went up, in the format expected in testdata/decode.text.
235 cover -= coverage()
256 cover += coverage()
269 // coverage returns a floating point number denoting the
270 // test coverage until now. The number increases when new code paths are exercised,
272 func coverage() float64 { func
274 f += testing.Coverage()
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
ext_test.go 228 // If printTests is set, we record the coverage value
230 // coverage went up, in the format expected in testdata/decode.text.
235 cover -= coverage()
256 cover += coverage()
269 // coverage returns a floating point number denoting the
270 // test coverage until now. The number increases when new code paths are exercised,
272 func coverage() float64 { func
274 f += testing.Coverage()
  /development/testrunner/
runtest.py 44 from coverage import coverage
150 parser.add_option("-o", "--coverage", dest="coverage",
152 help="Generate code coverage metrics for test(s)")
153 parser.add_option("--coverage-target", dest="coverage_target_path",
155 help="Path to app to collect code coverage target data for.")
219 self._options.coverage = True
293 if self._options.coverage:
294 coverage.EnableCoverageBuild(
    [all...]
  /external/skia/src/gpu/ops/
GrAtlasTextOp.cpp 94 GrProcessorAnalysisCoverage coverage; local
105 coverage = GrProcessorAnalysisCoverage::kSingleChannel;
110 coverage = GrProcessorAnalysisCoverage::kLCD;
113 coverage = GrProcessorAnalysisCoverage::kNone;
116 auto analysis = fProcessors.finalize(color, coverage, clip, false, caps, dstIsClamped,
GrAALinearizingConvexPathRenderer.cpp 97 SkASSERT(SkScalarRoundToInt(255.0f * tess.coverage(i)) <= 255);
98 unsigned scale = SkScalarRoundToInt(255.0f * tess.coverage(i));
104 tess.coverage(i);
118 Coverage::Type coverageType;
120 coverageType = Coverage::kSolid_Type;
122 coverageType = Coverage::kAttribute_Type;
  /external/skqp/src/gpu/ops/
GrAtlasTextOp.cpp 76 GrProcessorAnalysisCoverage coverage; local
87 coverage = GrProcessorAnalysisCoverage::kSingleChannel;
92 coverage = GrProcessorAnalysisCoverage::kLCD;
95 coverage = GrProcessorAnalysisCoverage::kNone;
98 auto analysis = fProcessors.finalize(color, coverage, clip, false, caps, dstIsClamped,
GrAALinearizingConvexPathRenderer.cpp 97 SkASSERT(SkScalarRoundToInt(255.0f * tess.coverage(i)) <= 255);
98 unsigned scale = SkScalarRoundToInt(255.0f * tess.coverage(i));
104 tess.coverage(i);
118 Coverage::Type coverageType;
120 coverageType = Coverage::kSolid_Type;
122 coverageType = Coverage::kAttribute_Type;
  /build/make/core/
config_sanitizers.mk 208 ifneq ($(filter coverage,$(my_sanitize)),)
210 $(error $(LOCAL_PATH): $(LOCAL_MODULE): Use of 'coverage' also requires 'address')
212 my_cflags += -fsanitize-coverage=trace-pc-guard,indirect-calls,trace-cmp
213 my_sanitize := $(filter-out coverage,$(my_sanitize))
  /external/skia/src/gpu/ccpr/
GrCCCoverageProcessor_GSImpl.cpp 18 * This class and its subclasses implement the coverage processor with geometry shaders.
78 const char* coverage = nullptr; local
80 coverage = emitArgs.emplace_back("coverage", kHalf_GrSLType).c_str();
85 position, coverage, wind.c_str());
287 // invocation emits a different edge. Emit negative coverage that subtracts the appropiate
  /external/v8/tools/unittests/
run_perf_test.py 7 import coverage
19 # Requires python-coverage and python-mock. Native python coverage
93 cls._cov = coverage.coverage(
  /frameworks/minikin/libs/minikin/
FontCollection.cpp 67 const SparseBitSet& coverage = family->getCoverage(); local
72 mMaxChar = max(mMaxChar, coverage.length());
73 lastChar.push_back(coverage.nextSetBit(0));
104 "Exceeded the maximum indexable cmap coverage.");
113 // - Coverage Score: How well the font family covers the given character or variation sequence.
119 // Coverage Score > Locale Score > Variant Score
140 // The highest 2 bits are for coverage score, then following 28 bits are for locale score,
145 // Calculates a font score based on variation sequence coverage.
413 // Continue using existing font as long as it has coverage and is whitelisted.
  /external/expat/
coverage.sh 72 # * coverage GCC flags make them needed
101 BASE_FLAGS+=' --coverage --no-inline'
187 coverage_info=coverage.info
225 echo 'Merging coverage files...'
  /external/freetype/include/freetype/
ftimage.h 832 unsigned char coverage; member in struct:FT_Span_
    [all...]
  /external/freetype/src/gxvalid/
gxvjust.c 504 FT_UShort coverage; local
512 coverage = FT_NEXT_USHORT( p );
515 GXV_TRACE(( " justClassTable: coverage = 0x%04x (%s) ", coverage ));
516 if ( ( coverage & 0x4000 ) == 0 )
  /external/iw/
info.c 287 unsigned char coverage; local
289 coverage = nla_get_u8(tb_msg[NL80211_ATTR_WIPHY_COVERAGE_CLASS]);
291 printf("\tCoverage class: %d (up to %dm)\n", coverage, 450 * coverage);
  /external/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 1 //=-- CoverageMappingReader.h - Code coverage mapping reader ------*- C++ -*-=//
10 // This file contains support for reading coverage mapping data for
11 // instrumentation based coverage.
22 #include "llvm/ProfileData/Coverage/CoverageMapping.h"
29 namespace coverage { namespace in namespace:llvm
33 /// \brief Coverage mapping information for a single function.
42 /// \brief A file format agnostic iterator over coverage mapping data.
78 /// \brief Base class for the raw coverage mapping and filenames data readers.
91 /// \brief Reader for the raw coverage filenames.
106 /// \brief Checks if the given coverage mapping data is exported fo
    [all...]
  /external/llvm/lib/ProfileData/Coverage/
CoverageMappingWriter.cpp 1 //=-- CoverageMappingWriter.cpp - Code coverage mapping writer -------------=//
10 // This file contains support for writing coverage mapping data for
11 // instrumentation based coverage.
15 #include "llvm/ProfileData/Coverage/CoverageMappingWriter.h"
19 using namespace coverage;
  /external/one-true-awk/
makefile 30 CC = gcc -fprofile-arcs -ftest-coverage # then gcov f1.c; cat f1.c.gcov
  /external/python/cpython3/Lib/test/
test_trace.py 344 coverage = {}
347 coverage[module] = (int(lines), int(cov[:-1]))
350 self.assertIn(modname, coverage)
351 self.assertEqual(coverage[modname], (5, 100))
  /external/skia/src/core/
SkRasterPipelineBlitter.cpp 155 // The full blit pipelines handle reading and writing the dst, blending, coverage, dithering.
393 uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 }; local
396 mask.fImage = coverage;
406 uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 }; local
409 mask.fImage = coverage;
  /external/skqp/src/core/
SkRasterPipelineBlitter.cpp 155 // The full blit pipelines handle reading and writing the dst, blending, coverage, dithering.
393 uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 }; local
396 mask.fImage = coverage;
406 uint8_t coverage[] = { (uint8_t)a0, (uint8_t)a1 }; local
409 mask.fImage = coverage;
  /frameworks/base/packages/SystemUI/tests/
Android.mk 86 # Provide jack a list of classes to exclude from code coverage.
90 # We want to exclude the test classes from code coverage measurements, but they share the same
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 1 //===- CoverageMappingReader.h - Code coverage mapping reader ---*- C++ -*-===//
10 // This file contains support for reading coverage mapping data for
11 // instrumentation based coverage.
20 #include "llvm/ProfileData/Coverage/CoverageMapping.h"
31 namespace coverage { namespace in namespace:llvm
35 /// \brief Coverage mapping information for a single function.
44 /// \brief A file format agnostic iterator over coverage mapping data.
82 /// \brief Base class for the raw coverage mapping and filenames data readers.
95 /// \brief Reader for the raw coverage filenames.
109 /// \brief Checks if the given coverage mapping data is exported fo
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ProfileData/Coverage/
CoverageMappingReader.h 1 //===- CoverageMappingReader.h - Code coverage mapping reader ---*- C++ -*-===//
10 // This file contains support for reading coverage mapping data for
11 // instrumentation based coverage.
20 #include "llvm/ProfileData/Coverage/CoverageMapping.h"
31 namespace coverage { namespace in namespace:llvm
35 /// \brief Coverage mapping information for a single function.
44 /// \brief A file format agnostic iterator over coverage mapping data.
82 /// \brief Base class for the raw coverage mapping and filenames data readers.
95 /// \brief Reader for the raw coverage filenames.
109 /// \brief Checks if the given coverage mapping data is exported fo
    [all...]

Completed in 656 milliseconds

<<11121314151617181920>>