HomeSort by relevance Sort by last modified time
    Searched full:coverage (Results 26 - 50 of 1084) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/providers/ContactsProvider/
Android.mk 15 # The Emma tool analyzes code coverage when running unit tests on the
18 # would dilute the coverage results. These options do not affect regular
22 # The Emma tool analyzes code coverage when running unit tests on the
25 # would dilute the coverage results. These options do not affect regular
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
summary.py 5 from coverage.report import Reporter
6 from coverage.results import Numbers
12 def __init__(self, coverage, show_missing=True, ignore_errors=False):
13 super(SummaryReporter, self).__init__(coverage, ignore_errors)
15 self.branches = coverage.data.has_arcs()
18 """Writes a report summarizing coverage statistics per module.
56 analysis = self.coverage._analyze(cu)
control.py 1 """Core control stuff for Coverage."""
5 from coverage.annotate import AnnotateReporter
6 from coverage.backward import string_class
7 from coverage.codeunit import code_unit_factory, CodeUnit
8 from coverage.collector import Collector
9 from coverage.config import CoverageConfig
10 from coverage.data import CoverageData
11 from coverage.files import FileLocator, TreeMatcher, FnmatchMatcher
12 from coverage.files import PathAliases, find_python_files
13 from coverage.html import HtmlReporte
19 class coverage(object): class in inherits:object
    [all...]
annotate.py 1 """Source file annotation for Coverage."""
5 from coverage.report import Reporter
8 """Generate annotated source files showing line coverage.
29 def __init__(self, coverage, ignore_errors=False):
30 super(AnnotateReporter, self).__init__(coverage, ignore_errors)
39 See `coverage.report()` for arguments.
xmlreport.py 1 """XML reporting for coverage.py"""
6 from coverage import __url__, __version__
7 from coverage.backward import sorted # pylint: disable=W0622
8 from coverage.report import Reporter
16 """A reporter for writing Cobertura-style XML coverage results."""
18 def __init__(self, coverage, ignore_errors=False):
19 super(XmlReporter, self).__init__(coverage, ignore_errors)
23 self.arcs = coverage.data.has_arcs()
40 "coverage", None,
41 "http://cobertura.sourceforge.net/xml/coverage-03.dtd
    [all...]
results.py 1 """Results of coverage measurement."""
5 from coverage.backward import set, sorted # pylint: disable=W0622
6 from coverage.misc import format_lines, join_regex, NoSource
7 from coverage.parser import CodeParser
14 self.coverage = cov
22 source = self.coverage.file_locator.get_zip_data(self.filename)
28 exclude=self.coverage._exclude_regex('exclude')
33 executed = self.coverage.data.executed_lines(self.filename)
37 if self.coverage.data.has_arcs():
39 join_regex(self.coverage.config.partial_list)
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkDrawProcs.h 79 SkScalar* coverage);
83 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
84 * a stroke by drawing a hairline with partial coverage). If any of these
85 * conditions are false, then this returns false and coverage is ignored.
88 SkScalar* coverage) {
95 *coverage = SK_Scalar1;
103 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
  /external/skia/src/core/
SkDrawProcs.h 79 SkScalar* coverage);
83 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
84 * a stroke by drawing a hairline with partial coverage). If any of these
85 * conditions are false, then this returns false and coverage is ignored.
88 SkScalar* coverage) {
95 *coverage = SK_Scalar1;
103 return SkDrawTreatAAStrokeAsHairline(strokeWidth, matrix, coverage);
  /external/emma/core/res/com/vladium/emma/
run_usage.res 6 "load/coverage classpath";
15 "consider the entire classpath for coverage {including classes that are never loaded}";
20 "coverage inclusion/exclusion patterns {?,*}";
25 "coverage report type list";
40 "raw session data output file (defaults to 'coverage.es')";
  /external/icu4c/layout/
MorphTables.cpp 40 SubtableCoverage coverage = SWAPW(subtableHeader->coverage); local
43 // should check coverage more carefully...
44 if ((coverage & scfVertical) == 0 && (subtableFeatures & defaultFlags) != 0) {
59 switch (SWAPW(coverage) & scfTypeMask)
  /external/llvm/bindings/python/
README.txt 40 You should strive for high code coverage. To see current coverage:
42 pip install coverage
43 nosetests --with-coverage --cover-html
45 Then open cover/index.html in your browser of choice to see the code coverage.
  /external/chromium_org/third_party/lcov/man/
lcovrc.5 11 code coverage tool (see
50 # Coverage rate limits
57 # Width of line coverage field in source code view
62 # Width of branch coverage field in source code view
137 # Include function coverage data display
142 # Include branch coverage data display
172 # Specify whether to capture coverage data for external source
201 # the base-directory when collecting coverage data.
236 # Specify if function coverage data should be collected and
243 # Specify if branch coverage data should be collected an
    [all...]
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 ]
70 Create an HTML view of coverage data found in
88 marked in different colors depending on the associated coverage rate. By
89 default, the coverage limits for low, medium and high coverage are set to
160 as coverage baseline
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
CoverageListener.java 28 * A test {@link RunListener} that generates EMMA code coverage.
36 * identifies the path to the generated code coverage file.
39 // Default file name for code coverage
40 private static final String DEFAULT_COVERAGE_FILE_NAME = "coverage.ec";
48 * @param customCoverageFilePath an optional user specified path for the coverage file
66 // use reflection to call emma dump coverage method, to avoid
76 // output path to generated coverage file so it can be parsed by a test harness if
80 writer.format("\nGenerated code coverage data to %s",mCoverageFilePath);
101 String msg = "Failed to generate emma coverage. " + hint;
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 43 Coverage::Iter iter;
44 for (iter.init (this+coverage); iter.more (); iter.next ()) {
54 Coverage::Iter iter;
55 for (iter.init (this+coverage); iter.more (); iter.next ()) {
62 inline const Coverage &get_coverage (void) const
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
184 coverage; \/* Offset to Coverage table--from member in struct:OT::SingleSubstFormat2
384 coverage; \/* Offset to Coverage table--from member in struct:OT::MultipleSubstFormat1
535 coverage; \/* Offset to Coverage table--from member in struct:OT::AlternateSubstFormat1
839 coverage; \/* Offset to Coverage table--from member in struct:OT::LigatureSubstFormat1
1014 coverage; \/* Offset to Coverage table--from member in struct:OT::ReverseChainSingleSubstFormat1
1170 const Coverage *coverage = &get_subtable (i).dispatch (&c, get_type ()); local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 43 Coverage::Iter iter;
44 for (iter.init (this+coverage); iter.more (); iter.next ()) {
54 Coverage::Iter iter;
55 for (iter.init (this+coverage); iter.more (); iter.next ()) {
62 inline const Coverage &get_coverage (void) const
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
184 coverage; \/* Offset to Coverage table--from member in struct:OT::SingleSubstFormat2
377 coverage; \/* Offset to Coverage table--from member in struct:OT::MultipleSubstFormat1
528 coverage; \/* Offset to Coverage table--from member in struct:OT::AlternateSubstFormat1
833 coverage; \/* Offset to Coverage table--from member in struct:OT::LigatureSubstFormat1
1006 coverage; \/* Offset to Coverage table--from member in struct:OT::ReverseChainSingleSubstFormat1
1162 const Coverage *coverage = &get_subtable (i).dispatch (&c, get_type ()); local
    [all...]
  /external/harfbuzz/src/
harfbuzz-gpos-private.h 192 HB_Coverage Coverage; /* Coverage table */
272 HB_Coverage Coverage; /* Coverage table */
302 HB_Coverage Coverage; /* Coverage table */
335 HB_Coverage MarkCoverage; /* mark glyph coverage table */
336 HB_Coverage BaseCoverage; /* base glyph coverage table */
380 HB_Coverage MarkCoverage; /* mark glyph coverage table */
382 /* ligature glyph coverage table *
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-gpos-private.h 192 HB_Coverage Coverage; /* Coverage table */
272 HB_Coverage Coverage; /* Coverage table */
302 HB_Coverage Coverage; /* Coverage table */
335 HB_Coverage MarkCoverage; /* mark glyph coverage table */
336 HB_Coverage BaseCoverage; /* base glyph coverage table */
380 HB_Coverage MarkCoverage; /* mark glyph coverage table */
382 /* ligature glyph coverage table *
    [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/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/htmlfiles/
pyfile.html 8 <title>Coverage for {{cu.name|escape}}: {{nums.pc_covered_str}}%</title>
15 jQuery(document).ready(coverage.pyfile_ready);
22 <h1>Coverage for <b>{{cu.name|escape}}</b> :
28 <span class='{{c_run}} shortkey_r' onclick='coverage.toggle_lines(this, "run")'>{{nums.n_executed}} run</span>
29 <span class='{{c_mis}} shortkey_m' onclick='coverage.toggle_lines(this, "mis")'>{{nums.n_missing}} missing</span>
30 <span class='{{c_exc}} shortkey_x' onclick='coverage.toggle_lines(this, "exc")'>{{nums.n_excluded}} excluded</span>
32 <span class='{{c_par}} shortkey_p' onclick='coverage.toggle_lines(this, "par")'>{{n_par}} partial</span>
81 <a class='nav' href='index.html'>&#xab; index</a> &nbsp; &nbsp; <a class='nav' href='{{__url__}}'>coverage.py v{{__version__}}</a>
  /external/emma/
ANDROID-CHANGES.txt 4 1) Change coverage.out.file location in core/res/emma_default.properties to /data/coverage.ec
  /external/emma/core/res/com/vladium/emma/data/
merge_usage.res 5 "list of meta/coverage data files";
10 "merged data output file (defaults to 'coverage.es')";
  /external/chromium_org/third_party/icu/source/common/
servslkf.cpp 36 int32_t coverage)
37 : LocaleKeyFactory(coverage)
47 int32_t coverage)
48 : LocaleKeyFactory(coverage)
  /external/icu4c/common/
servslkf.cpp 36 int32_t coverage)
37 : LocaleKeyFactory(coverage)
47 int32_t coverage)
48 : LocaleKeyFactory(coverage)

Completed in 943 milliseconds

12 3 4 5 6 7 8 91011>>