Home
last modified time | relevance | path

Searched refs:counter (Results 1 – 10 of 10) sorted by relevance

/development/tools/compare_cts_reports/
Dtest_aggregate_cts_reports.py101 self.assertEqual(summary.counter['pass'], 1)
102 self.assertEqual(summary.counter['fail'], 1)
105 self.assertEqual(summary.counter['pass'], 3)
107 summary.counter['ASSUMPTION_FAILURE'],
110 self.assertEqual(summary.counter['fail'], 2)
113 self.assertEqual(summary.counter['pass'], 2)
114 self.assertEqual(summary.counter['TEST_ERROR'], 1)
117 self.assertEqual(summary.counter['fail'], 1)
Dtest_parse_cts_report.py129 self.assertEqual(summary.counter['pass'], 1)
130 self.assertEqual(summary.counter['fail'], 1)
133 self.assertEqual(summary.counter['pass'], 1)
134 self.assertEqual(summary.counter['IGNORED'], 1)
136 summary.counter['ASSUMPTION_FAILURE'],
139 self.assertEqual(summary.counter['fail'], 2)
141 summary.counter['TEST_STATUS_UNSPECIFIED'],
146 self.assertEqual(summary.counter['pass'], 1)
147 self.assertEqual(summary.counter['TEST_ERROR'], 1)
Dparse_cts_report.py119 summary.counter[test_status] += 1
127 summary.counter[previous] -= 1
128 summary.counter[test_status] += 1
240 self.counter = dict.fromkeys(CtsReport.STATUS_ORDER, 0)
247 items += self.counter[status]
259 pass_category += self.counter[status]
268 return [self.counter[key] for key in CtsReport.STATUS_ORDER]
Dcompare_cts_reports.py169 row.append(summary.counter[item])
/development/samples/VirtualDeviceManager/demos/src/com/example/android/vdmdemo/demos/
DLatencyDemoActivity.java45 View counter = requireViewById(R.id.counter); in onCreate() local
49 counter::invalidate, 0, DELAY_MS, TimeUnit.MILLISECONDS); in onCreate()
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/
DInsecureSHA1PRNGKeyDerivator.java130 private transient long counter; field in InsecureSHA1PRNGKeyDerivator
213 counter = COUNTER_BASE; in InsecureSHA1PRNGKeyDerivator()
365 seed[lastWord] = (int) (counter >>> 32); in nextBytes()
366 seed[lastWord + 1] = (int) (counter & 0xFFFFFFFF); in nextBytes()
371 seed[lastWord] |= (int) ((counter >>> RIGHT1[n]) & MASK[n]); in nextBytes()
372 seed[lastWord + 1] = (int) ((counter >>> RIGHT2[n]) & 0xFFFFFFFF); in nextBytes()
373 seed[lastWord + 2] = (int) ((counter << LEFT[n]) | END_FLAGS[n]); in nextBytes()
391 counter++; in nextBytes()
/development/samples/browseable/BatchStepSensor/
D_index.jd8 … <p>This sample demonstrates the use of the two step sensors (step detector and counter) and
13 event when a step is detected, while the step counter returns the total number of
/development/samples/VoiceInteractionService/
DREADME.md83 FROM counter
84 INNER JOIN track ON counter.track_id = track.id
90 SELECT ts, 'counter' as type, name, value
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
DCounterFragment.java54 mCounterText = (TextView) view.findViewById(R.id.counter); in onCreateView()
/development/samples/VirtualDeviceManager/
DREADME.md383 - **Latency**: Renders a simple counter view that renders a new frame with an
384 incremented counter every second. Can be useful for debugging latency,