Searched refs:coverage (Results 1 - 25 of 66) sorted by relevance

123

/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/icu4c/layout/
H A DSubtableProcessor.cpp23 coverage = SWAPW(subtableHeader->coverage);
H A DMorphTables.cpp40 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)
H A DKernTable.h32 le_uint16 coverage; member in class:KernTable
H A DSubtableProcessor.h33 SubtableCoverage coverage; member in class:SubtableProcessor
H A DKernTable.cpp42 le_uint16 coverage; member in struct:SubtableHeader
100 coverage = SWAPW(subhead->coverage);
102 if (coverage & COVERAGE_HORIZONTAL) { // only handle horizontal kerning
120 fprintf(stderr, "coverage: %0.4x nPairs: %d pairs 0x%x\n", coverage, nPairs, pairs);
H A DMorphTables.h77 SubtableCoverage coverage; member in struct:MorphSubtableHeader
/external/webkit/Tools/Scripts/
H A Dbuild-jsc45 --[no-]coverage Toggle code coverage support (default: $coverageSupport)
49 'coverage!' => \$coverageSupport,
/external/icu4c/common/
H A Dservslkf.cpp36 int32_t coverage)
37 : LocaleKeyFactory(coverage)
47 int32_t coverage)
48 : LocaleKeyFactory(coverage)
33 SimpleLocaleKeyFactory(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage) argument
44 SimpleLocaleKeyFactory(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage) argument
H A Dservlkf.cpp30 LocaleKeyFactory::LocaleKeyFactory(int32_t coverage) argument
32 , _coverage(coverage)
36 LocaleKeyFactory::LocaleKeyFactory(int32_t coverage, const UnicodeString& name) argument
38 , _coverage(coverage)
132 result.append(", coverage: ");
H A Dservloc.h226 LocaleKeyFactory(int32_t coverage);
231 LocaleKeyFactory(int32_t coverage, const UnicodeString& name);
247 * on the coverage rule for this factory.
310 int32_t coverage);
315 int32_t coverage);
329 * on the coverage rule for this factory.
487 * registerObject(Object, Locale, int32_t kind, int coverage)
488 * passing KIND_ANY for the kind, and VISIBLE for the coverage.
494 * registerObject(Object, Locale, int kind, int coverage)
495 * passing VISIBLE for the coverage
[all...]
H A Dservls.cpp118 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status) argument
120 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage);
144 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage, UErrorCode& status)
146 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage);
/external/skia/src/core/
H A DSkDrawProcs.h39 * the matrix is <= 1.0, then this returns true, and sets coverage (simulating
40 * a stroke by drawing a hairline with partial coverage). If any of these
41 * conditions are false, then this returns false and coverage is ignored.
43 bool SkDrawTreatAsHairline(const SkPaint&, const SkMatrix&, SkScalar* coverage);
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DSimpleFontDataPango.cpp119 PangoCoverage* coverage = pango_font_get_coverage(m_platformData.m_font, pango_language_get_default()); local
122 if (PANGO_COVERAGE_NONE == pango_coverage_get(coverage, characters[i])) {
128 pango_coverage_unref(coverage);
/external/emma/core/java12/com/vladium/emma/report/
H A DMethodItem.java78 final boolean [] coverage = parent.m_coverage != null ? parent.m_coverage [m_ID] : null;
89 if (coverage != null)
99 if (coverage [b])
128 if (coverage [b])
H A DReportDataModel.java90 // check metadata and coverage data consistency:
99 final boolean [][] coverage = data != null ? data.m_coverage : null;
103 final ClassItem classItem = srcView ? new ClassItem (srcfileItem, cls, coverage) : new ClassItem (packageItem, cls, coverage);
H A DClassItem.java27 public ClassItem (final IItem parent, final ClassDescriptor cls, final boolean [][] coverage) argument
32 m_coverage = coverage;
/external/freetype/src/sfnt/
H A Dttkern.c88 FT_UInt num_pairs, length, coverage; local
100 coverage = FT_NEXT_USHORT( p );
111 if ( ( coverage & ~8 ) != 0x0001 ||
202 FT_UInt coverage = FT_NEXT_USHORT( p ); local
226 switch ( coverage >> 8 )
292 if ( coverage & 8 ) /* override or add */
/external/freetype/src/smooth/
H A Dftgrays.c48 /* coverage of the outline on each pixel cell. */
69 /* - A perfect anti-aliaser, i.e., it computes the _exact_ coverage on */
1190 unsigned char coverage = spans->coverage; local
1193 if ( coverage )
1200 FT_MEM_SET( p + spans->x, (unsigned char)coverage, spans->len );
1208 case 7: *q++ = (unsigned char)coverage;
1209 case 6: *q++ = (unsigned char)coverage;
1210 case 5: *q++ = (unsigned char)coverage;
1211 case 4: *q++ = (unsigned char)coverage;
1232 int coverage; local
[all...]
/external/skia/src/gpu/
H A DGrDrawState.h137 * Sets a constant fractional coverage to be applied to the draw. The
139 * coverage is ignored when per-vertex coverage is provided.
141 void setCoverage(uint8_t coverage) { argument
142 fCoverage = GrColorPackRGBA(coverage, coverage, coverage, coverage);
149 void setCoverage4(GrColor coverage) { argument
150 fCoverage = coverage;
[all...]
/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/elfutils/tests/
H A DMakefile.am130 coverage.sh test-subr.sh test-wrapper.sh \
240 check: check-am coverage
241 .PHONY: coverage
242 coverage:
243 -$(srcdir)/coverage.sh
/external/skia/src/gpu/gl/
H A DGrGpuGLShaders.cpp699 void GrGpuGLShaders::flushCoverage(GrColor coverage) { argument
705 // coverage will be specified per-vertex as an attribute
706 // invalidate the const vertex attrib coverage
711 if (fHWDrawState.getCoverage() != coverage) {
714 float c[] = GR_COLOR_TO_VEC4(coverage);
717 fHWDrawState.setCoverage(coverage);
721 if (fProgramData->fCoverage != coverage) {
724 float c[] = GR_COLOR_TO_VEC4(coverage);
729 fProgramData->fCoverage = coverage;
736 GrCrash("Unknown coverage typ
778 GrColor coverage; local
[all...]
/external/zlib/src/contrib/puff/
H A DMakefile13 cc -fprofile-arcs -ftest-coverage -o puft puff.c pufftest.o
15 # puff full coverage test (should say 100%)

Completed in 1507 milliseconds

123