HomeSort by relevance Sort by last modified time
    Searched full:coverage (Results 51 - 75 of 1099) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkDrawProcs.h 64 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
65 * a stroke by drawing a hairline with partial coverage). If any of these
66 * conditions are false, then this returns false and coverage is ignored.
68 bool SkDrawTreatAsHairline(const SkPaint&, const SkMatrix&, SkScalar* coverage);
  /external/chromium_org/third_party/lcov-1.9/man/
genhtml.1 3 genhtml \- Generate HTML view from LCOV coverage data files
52 .RB [ \-\-function\-coverage ]
53 .RB [ \-\-no\-function\-coverage ]
55 .RB [ \-\-branch\-coverage ]
56 .RB [ \-\-no\-branch\-coverage ]
63 Create an HTML view of coverage data found in
81 marked in different colors depending on the associated coverage rate. By
82 default, the coverage limits for low, medium and high coverage are set to
146 as coverage baseline
    [all...]
lcov.1 138 is a graphical front\-end for GCC's coverage testing tool gcov. It collects
139 line, function and branch coverage data for multiple source files and creates
140 HTML pages containing the source code annotated with coverage information.
145 to collect coverage data and
147 to create HTML pages. Coverage data can either be collected from the
151 For Linux kernel coverage:
154 .I http://ltp.sourceforge.net/coverage/gcov.php
159 For user space application coverage:
162 "\-fprofile\-arcs" and "\-ftest\-coverage".
182 Specify several tracefiles using the \-a switch to combine the coverage dat
    [all...]
  /external/clang/test/Driver/
coverage-ld.c 1 // Test coverage ld flags.
4 // RUN: -target i386-unknown-linux --coverage \
13 // RUN: -target x86_64-unknown-linux --coverage \
  /external/llvm/docs/CommandGuide/
llvm-cov.rst 1 llvm-cov - emit coverage information
13 by compiler and coverage data file generated by instrumented program. This
27 This option selects coverage data file generated by instrumented compiler.
  /external/llvm/utils/lit/tests/
lit.cfg 32 # Enable coverage.py reporting, assuming the coverage module has been installed
34 if lit.params.get('check-coverage', None):
  /hardware/invensense/60xx/mlsdk/mllite/
mlinclude.h 23 #ifdef COVERAGE
31 #ifdef COVERAGE
39 #endif // COVERAGE
  /external/chromium_org/third_party/lcov/man/
lcovrc.5 11 code coverage tool (see
50 # Coverage rate limits for line coverage
57 # Coverage rate limits for function coverage
134 # Include function coverage data display
215 Specify coverage rate limits for classifying file entries. Use this option to
216 modify the coverage rates (in percent) for line or function coverage at which
217 a result is classified as high, medium or low coverage. This classificatio
    [all...]
genhtml.1 3 genhtml \- Generate HTML view from LCOV coverage data files
52 .RB [ \-\-function\-coverage ]
53 .RB [ \-\-no\-function\-coverage ]
58 Create an HTML view of coverage data found in
76 marked in different colors depending on the associated coverage rate. By
77 default, the coverage limits for low, medium and high coverage are set to
141 as coverage baseline.
222 Keep descriptions found in the description file even if the coverage data
302 Highlight lines with converted\-only coverage data
    [all...]
  /external/chromium_org/third_party/lcov-1.9/
README 14 * HTML based output: coverage rates are additionally indicated using bar
18 coverage data by providing three levels of detail: directory view,
21 LCOV was initially designed to support Linux kernel coverage measurements,
22 but works as well for coverage measurements on standard user space
30 3. An example of how to access kernel coverage data
31 4. An example of how to access coverage data for a user space program
40 bin/lcov - Tool for capturing LCOV coverage data
57 http://ltp.sourceforge.net/coverage/lcov.php
76 3. An example of how to access kernel coverage data
89 b) Capturing the current coverage state to a fil
    [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/data/
CoverageData.java 71 public void addClass (final boolean [][] coverage, final String classVMName, final long stamp)
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 = new boolean [length][]
    [all...]
  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/fullcoverage/
encodings.py 1 """Imposter encodings module that installs a coverage-style tracer.
7 using "coverage" to run Python's tests, then this file will become the very
9 coverage-compatible trace function that can watch Standard Library modules
11 a problem with coverage - that it starts too late to trace the coverage of many
  /packages/providers/CalendarProvider/tests/
EMMA_README 2 # the Calendar provider with EMMA coverage, executes the Calendar CTS
25 # rebuild provider with emma coverage
33 adb shell am instrument -w -e coverage true \
44 adb pull $output coverage.ec
47 emma report -r html -in coverage.ec \
49 -in ${ANDROID_BUILD_TOP}/out/target/common/obj/APPS/CalendarProvider_intermediates/coverage.em
59 # rebuild provider without emma coverage
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsubgpos-private.hh 215 typedef const Coverage &return_t;
218 static return_t default_return_value (void) { return Null(Coverage); }
622 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
623 return (data+coverage).intersects (glyphs);
650 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
651 (data+coverage).add_coverage (glyphs)
676 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
1288 coverage; \/* Offset to Coverage table--from member in struct:OT::ContextFormat1
1380 coverage; \/* Offset to Coverage table--from member in struct:OT::ContextFormat2
1477 coverage[VAR]; \/* Array of offsets to Coverage member in struct:OT::ContextFormat3
1846 coverage; \/* Offset to Coverage table--from member in struct:OT::ChainContextFormat1
1958 coverage; \/* Offset to Coverage table--from member in struct:OT::ChainContextFormat2
    [all...]
hb-ot-layout-gdef-table.hh 54 unsigned int index = (this+coverage).get_coverage (glyph_id);
76 return TRACE_RETURN (coverage.sanitize (c, this) && attachPoint.sanitize (c, this));
80 OffsetTo<Coverage>
81 coverage; /* Offset to Coverage table -- from member in struct:OT::AttachList
85 * in Coverage Index order */
245 unsigned int index = (this+coverage).get_coverage (glyph_id);
258 return TRACE_RETURN (coverage.sanitize (c, this) && ligGlyph.sanitize (c, this));
262 OffsetTo<Coverage>
263 coverage; /* Offset to Coverage table--fro member in struct:OT::LigCaretList
286 coverage; \/* Array of long offsets to mark set member in struct:OT::MarkGlyphSetsFormat1
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsubgpos-private.hh 215 typedef const Coverage &return_t;
218 static return_t default_return_value (void) { return Null(Coverage); }
622 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
623 return (data+coverage).intersects (glyphs);
650 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
651 (data+coverage).add_coverage (glyphs)
676 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; local
1288 coverage; \/* Offset to Coverage table--from member in struct:OT::ContextFormat1
1380 coverage; \/* Offset to Coverage table--from member in struct:OT::ContextFormat2
1477 coverage[VAR]; \/* Array of offsets to Coverage member in struct:OT::ContextFormat3
1846 coverage; \/* Offset to Coverage table--from member in struct:OT::ChainContextFormat1
1958 coverage; \/* Offset to Coverage table--from member in struct:OT::ChainContextFormat2
    [all...]
hb-ot-layout-gdef-table.hh 54 unsigned int index = (this+coverage).get_coverage (glyph_id);
76 return TRACE_RETURN (coverage.sanitize (c, this) && attachPoint.sanitize (c, this));
80 OffsetTo<Coverage>
81 coverage; /* Offset to Coverage table -- from member in struct:OT::AttachList
85 * in Coverage Index order */
245 unsigned int index = (this+coverage).get_coverage (glyph_id);
258 return TRACE_RETURN (coverage.sanitize (c, this) && ligGlyph.sanitize (c, this));
262 OffsetTo<Coverage>
263 coverage; /* Offset to Coverage table--fro member in struct:OT::LigCaretList
286 coverage; \/* Array of long offsets to mark set member in struct:OT::MarkGlyphSetsFormat1
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrDrawState.cpp 229 // Check whether coverage is treated as color. If so we run through the coverage computation.
250 // If we're drawing coverage directly then coverage is effectively treated as color.
255 GrColor coverage;
257 // Initialize to an unknown starting coverage if per-vertex coverage is specified.
261 coverage = fCommon.fCoverage;
265 // Run through the coverage stages and see if the coverage will be all ones at the end
    [all...]
  /external/skia/src/gpu/
GrDrawState.cpp 229 // Check whether coverage is treated as color. If so we run through the coverage computation.
250 // If we're drawing coverage directly then coverage is effectively treated as color.
255 GrColor coverage;
257 // Initialize to an unknown starting coverage if per-vertex coverage is specified.
261 coverage = fCommon.fCoverage;
265 // Run through the coverage stages and see if the coverage will be all ones at the end
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLProgramDesc.h 58 * outputs the color and coverage stages referenced by the generated descriptor. This may
59 * not contain all stages from the draw state and coverage stages from the drawState may
113 // modulate color and coverage, write result as the color output.
115 // Writes color*coverage as the primary color output and also writes coverage as the
118 // Writes color*coverage as the primary color output and also writes coverage * (1 - colorA)
121 // Writes color*coverage as the primary color output and also writes coverage *
124 // Combines the coverage, dst, and color as coverage * color + (1 - coverage) * dst. Thi
    [all...]
  /external/skia/src/gpu/gl/
GrGLProgramDesc.h 58 * outputs the color and coverage stages referenced by the generated descriptor. This may
59 * not contain all stages from the draw state and coverage stages from the drawState may
113 // modulate color and coverage, write result as the color output.
115 // Writes color*coverage as the primary color output and also writes coverage as the
118 // Writes color*coverage as the primary color output and also writes coverage * (1 - colorA)
121 // Writes color*coverage as the primary color output and also writes coverage *
124 // Combines the coverage, dst, and color as coverage * color + (1 - coverage) * dst. Thi
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
README.chromium 19 Name: coverage - code coverage metrics for python
20 Short Name: coverage
21 URL: http://pypi.python.org/packages/source/c/coverage/coverage-3.5.1.tar.gz#md5=410d4c8155a4dab222f2bc51212d4a24
26 Description: code coverage metrics gathering for test-webkitpy.
  /external/chromium_org/third_party/lcov/rpm/
lcov.spec 7 URL: http://ltp.sourceforge.net/coverage/lcov.php
13 LCOV is a graphical front-end for GCC's coverage testing tool gcov. It collects
15 source code annotated with coverage information. It also adds overview pages

Completed in 375 milliseconds

1 23 4 5 6 7 8 91011>>