HomeSort by relevance Sort by last modified time
    Searched refs:missed (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
CounterImpl.java 49 public Var(final int missed, final int covered) {
50 super(missed, covered);
54 public CounterImpl increment(final int missed, final int covered) {
55 this.missed += missed;
65 public Fix(final int missed, final int covered) {
66 super(missed, covered);
70 public CounterImpl increment(final int missed, final int covered) {
71 return getInstance(this.missed + missed, this.covered + covered)
104 protected int missed; field in class:CounterImpl
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4370.go 7 // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
bug200.go 11 // hash codes so it missed the duplication
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4370.go 7 // Re-exporting inlined function bodies missed types in x, ok := v.(Type)
bug200.go 11 // hash codes so it missed the duplication
  /external/autotest/client/site_tests/hardware_VideoDecodeCapable/
hardware_VideoDecodeCapable.py 142 missed = set(formats) - set(self._enum_formats(device))
143 self.assertTrue(not missed,
145 missed, device)
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeIconsView.java 38 * View that draws one or more symbols for different types of calls (missed calls, outgoing etc).
117 return sResources.missed;
125 // distinguish between rejected and missed calls). Instead of crashing, just
126 // assume that all unknown call types are missed calls.
127 return sResources.missed;
164 // Drawable representing an incoming missed call.
165 public final Drawable missed; field in class:CallTypeIconsView.Resources
200 missed = r.getDrawable(R.drawable.ic_call_arrow).mutate();
201 missed.setColorFilter(r.getColor(R.color.missed_call), PorterDuff.Mode.MULTIPLY);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
SourceHighlighter.java 109 "All %2$d branches missed.", branches);
115 "%1$d of %2$d branches missed.", branches);
125 final Integer missed = Integer.valueOf(branches.getMissedCount()); local
127 span.attr("title", String.format(locale, title, missed, total));
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
BarColumn.java 88 final int missed = counter.getMissedCount(); local
89 bar(td, missed, Resources.REDBAR, resources, base);
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/table/
BarColumnTest.java 207 private ITableItem createItem(final int missed, final int covered) {
208 final ICoverageNode node = createNode(missed, covered);
228 private CoverageNodeImpl createNode(final int missed, final int covered) {
231 this.lineCounter = CounterImpl.getInstance(missed, covered);
PercentageColumnTest.java 141 private ITableItem createItem(final int missed, final int covered) {
142 final ICoverageNode node = createNode(missed, covered);
162 private CoverageNodeImpl createNode(final int missed, final int covered) {
165 this.lineCounter = CounterImpl.getInstance(missed, covered);
CounterColumnTest.java 199 private ITableItem createItem(final int missed, final int covered) {
200 final ICoverageNode node = createNode(missed, covered);
220 private CoverageNodeImpl createNode(final int missed, final int covered) {
223 this.lineCounter = CounterImpl.getInstance(missed, covered);
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 65 missed.
133 Missed frame swaps can be tracked by calling the following function:
138 glXBeginFrameTrackingMESA resets a "missed frame" count and
140 If a swap is missed based in the rate control specified by the
142 per frame, the missed frame count is incremented.
144 The current missed frame count and total number of swaps since
161 swaps that missed the specified frame. The frame usage for the
162 last missed frame is returned in the location pointed to by
172 missed frame count.
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CounterComparatorTest.java 121 private CounterImpl ctr(int missed, int covered) {
122 return CounterImpl.getInstance(missed, covered);
  /external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
CoreTutorial.java 170 final Integer missed = Integer.valueOf(counter.getMissedCount()); local
172 out.printf("%s of %s %s missed%n", missed, total, unit);
  /prebuilts/go/darwin-x86/src/net/
dnsclient_test.go 37 t.Errorf("missed target weight: expected %v, %v", expected, actual)
  /prebuilts/go/linux-x86/src/net/
dnsclient_test.go 37 t.Errorf("missed target weight: expected %v, %v", expected, actual)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/msp430/
bad.s 16 ;; might cause an interrupt to be missed. The assembler
  /external/opencv/ml/src/
_ml.h 116 uchar* missed;int msstep, mcstep; -missedMeasurements...
132 uchar* missed; \
142 data = classes = tmask = missed = sidx = cidx = NULL; \
187 ICV_RAWDATA( *(param), (flags), missed, msstep, mcstep, mm, mn ); \
  /external/opencv3/apps/traincascade/
old_ml_precomp.hpp 112 uchar* missed;int msstep, mcstep; -missedMeasurements...
128 uchar* missed; \
138 data = classes = tmask = missed = sidx = cidx = NULL; \
183 ICV_RAWDATA( *(param), (flags), missed, msstep, mcstep, mm, mn ); \
  /hardware/bsp/intel/peripheral/libupm/
Android.mk 31 # groveloudness module requires a header file missed in imported tip of libupm
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aetools.py 60 def missed(ae): function
76 # Workaround for what I feel is a bug in OSX 10.2: 'errn' won't show up in missed...
85 key = missed(ae)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetools.py 60 def missed(ae): function
76 # Workaround for what I feel is a bug in OSX 10.2: 'errn' won't show up in missed...
85 key = missed(ae)
  /external/valgrind/VEX/priv/
guest_s390_helpers.c     [all...]
  /external/libselinux/src/
avc.c 562 static int missed, rc = 0;
572 int lost = missed;
573 missed = 0;
584 missed++;

Completed in 787 milliseconds

1 2 3 4