/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
results_collector.hpp | 45 // ************** test_results ************** // 48 class BOOST_TEST_DECL test_results { class in namespace:boost::unit_test 50 test_results(); 52 typedef BOOST_READONLY_PROPERTY( counter_t, (results_collector_t)(test_results)(results_collect_helper) ) counter_prop; 53 typedef BOOST_READONLY_PROPERTY( bool, (results_collector_t)(test_results)(results_collect_helper) ) bool_prop; 70 void operator+=( test_results const& ); 95 test_results const& results( test_unit_id ) const;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
results_collector.ipp | 39 // ************** test_results ************** // 42 test_results::test_results() 50 test_results::passed() const 61 test_results::result_code() const 72 test_results::operator+=( test_results const& tr ) 85 test_results::clear() 109 std::map<test_unit_id,test_results> m_results_store; 119 std::map<test_unit_id,test_results> m_results_store [all...] |
plain_report_formatter.ipp | 102 test_results const& tr = results_collector.results( tu.p_id ); 157 test_results const& tr = results_collector.results( tu.p_id );
|
xml_report_formatter.ipp | 56 test_results const& tr = results_collector.results( tu.p_id );
|
/external/autotest/frontend/tko/ |
urls.py | 12 (r'^test_results/?$', resources.TestResultCollection.dispatch_request), 13 (r'^test_results/(?P<test_id>\d+)/?$',
|
resources_test_fixme.py | 30 response = self.request('get', 'test_results') 36 response = self.request('get', 'test_results?afe_job_id=1') 41 response = self.request('get', 'test_results/1')
|
resources.py | 55 'test_results': TestResultCollection(self._request).link(),
|
/external/autotest/client/site_tests/platform_GesturesRegressionTest/ |
platform_GesturesRegressionTest.py | 49 # TODO(dennisjeffrey): Remove all uses of self.test_results below, 52 self.test_results = {} 58 self.test_results[key.replace('/', '-')] = score 62 if self.test_results: 63 self.write_perf_keyval(self.test_results)
|
/ndk/tests/ |
printers.py | 47 for suite, test_results in results.items(): 48 stats_str = format_stats_str(len(test_results), 53 for result in test_results:
|
run-all.py | 247 for suite, test_results in results.items(): 248 for result in test_results:
|
tests.py | 91 test_results = [] 93 test_results.extend(self._run_test(test, out_dir, 95 results[suite] = test_results
|
/external/autotest/puppylab/ |
results_mocker.py | 32 self.results_dir, self.test_results, self.host_keyval_dir) 35 if not os.path.exists(self.test_results): 36 os.makedirs(self.test_results) 39 assert(os.path.exists(self.test_results) and 53 self.test_results = os.path.join(results_dir, test_name) 63 self.test_status = os.path.join(self.test_results, 'status') 67 self.test_keyvals = os.path.join(self.test_results, 'keyval')
|
/development/testrunner/ |
am_instrument_parser.py | 33 (test_results, inst_finished_bundle) 35 test_results (list of am_output_parser.TestResult) 44 test_results = [] 56 test_results.append(test_result) 64 return (test_results, inst_finished_bundle)
|
adb_interface.py | 40 DEVICE_TRACE_DIR = "/data/test_results/" 215 (test_results, inst_finished_bundle) 217 test_results: a list of TestResults 237 (test_results, inst_finished_bundle) = ( 257 return (test_results, inst_finished_bundle)
|
/external/autotest/client/site_tests/graphics_dEQP/ |
graphics_dEQP.py | 53 def _parse_test_results(self, result_filename, test_results=None): 66 if test_results is None: 67 test_results = {} 70 return test_results 99 test_results[result] = test_results.get(result, 0) + 1 105 return test_results 236 test_results = {} 280 test_results[result] = test_results.get(result, 0) + [all...] |
/external/autotest/server/cros/dynamic_suite/ |
suite_unittest.py | 623 def mock_bug_filing(self, test_results): 626 @param test_results: A named tuple (predicates, fallout) representing 636 test_predicates = test_results[0] 637 test_fallout = test_results[1] 670 test_results = self._createSuiteMockResults() 673 [test_results[0] + test_results[1]], 676 self.mock_bug_filing(test_results) 688 test_results = self._createSuiteMockResults(self.tmpdir) 691 [test_results[0] + test_results[1]] [all...] |
/development/testrunner/test_defs/ |
instrumentation_test.py | 153 (test_results, status_map) = adb.StartInstrumentationForPackage( 161 self._PrintTestResults(test_results) 190 def _PrintTestResults(self, test_results): 194 test_results: a list of am_instrument_parser.TestResult 199 for test_result in test_results:
|
/external/chromium-trace/catapult/third_party/typ/typ/ |
json_results.py | 162 def _encode_multipart_form_data(attrs, test_results): 179 lines.append(json.dumps(test_results))
|
/external/skia/dm/ |
DMJsonWriter.cpp | 80 root["test_results"]["failures"].append(result);
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
neteq_unittest.cc | 120 template<class T> void ProcessReference(const T& test_results); 122 const T (&test_results)[n], 125 const T (&test_results)[n], 128 const T (&test_results)[n], 162 void RefFiles::ProcessReference(const T& test_results) { 163 WriteToFile(test_results); 164 ReadFromFileAndCompare(test_results); 168 void RefFiles::ProcessReference(const T (&test_results)[n], size_t length) { 169 WriteToFile(test_results, length); 170 ReadFromFileAndCompare(test_results, length) [all...] |
/external/v8/tools/ |
run-deopt-fuzzer.py | 445 test_results = {} 449 test_results[t.path] = MAX_DEOPT - int(line.split(" ")[-1]) 451 if t.path not in test_results: 454 results_dict = dict((t.path, n) for (t, n) in test_results.iteritems()) 463 max_deopt = test_results.get(t.path, 0)
|
/external/autotest/client/site_tests/security_ASLR/ |
security_ASLR.py | 332 test_results = self.test_randomization(process) 333 full_results[process.get_name()] = test_results['results'] 334 if not test_results['pass']:
|
/external/opencv3/modules/ts/misc/ |
xls-report.py | 173 test_results = module_tests.setdefault((test.shortName(), test.param()), {}) 175 test_results[configuration] = min( 176 test_results.get(configuration), new_result,
|
/external/google-benchmark/ |
appveyor.yml | 24 name: test_results
|
/art/compiler/utils/ |
assembler_thumb_test_expected.cc.inc | [all...] |