Searched refs:test_idx (Results 1 – 11 of 11) sorted by relevance
/external/autotest/tko/ |
D | db.py | 362 for test_idx in self.find_tests(job_idx): 363 where = {'test_idx' : test_idx} 368 self.delete('tko_test_labels_tests', {'test_id': test_idx}) 434 test_idx = test.test_idx 436 {'test_idx': test_idx}, commit=commit) 437 where = {'test_idx': test_idx} 445 test_idx = test.test_idx = self.get_last_autonumber_value() 446 data = {'test_idx': test_idx} 461 data = {'test_idx': test_idx} 480 data = {'test_idx': test_idx, 'attribute': key, [all …]
|
D | parse.py | 204 old_tests = dict(((test, subdir), test_idx) 205 for test_idx, subdir, test in raw_old_tests) 240 test_idx = old_tests.pop((test.testname, test.subdir), None) 241 if test_idx is not None: 242 test.test_idx = test_idx 247 for test_idx in old_tests.itervalues(): 248 where = {'test_idx' : test_idx} 253 db.delete('tko_test_labels_tests', {'test_id': test_idx})
|
D | frontend.py | 222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx, argument 224 self.idx = test_idx
|
/external/autotest/database/ |
D | schema_051.sql | 803 …NSTRAINT `test_runs_tko_test_id_fk` FOREIGN KEY (`tko_test_id`) REFERENCES `tko_tests` (`test_idx`) 835 `test_idx` int(10) unsigned NOT NULL, 839 KEY `test_idx` (`test_idx`), 840 …RAINT `tko_iteration_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… 852 `test_idx` int(10) unsigned NOT NULL, 856 KEY `test_idx` (`test_idx`), 859 …ONSTRAINT `tko_iteration_result_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… 1095 `test_idx` int(10) unsigned NOT NULL, 1101 KEY `test_idx` (`test_idx`), 1104 …CONSTRAINT `tko_test_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… [all …]
|
/external/opencv3/samples/python2/ |
D | digits_adjust.py | 41 test_idx = folds[i] 46 test_samples, test_labels = samples[test_idx], labels[test_idx]
|
/external/autotest/frontend/tko/ |
D | resources.py | 27 rep.update(id=self.instance.test_idx,
|
D | rpc_interface.py | 118 test_idx = group_dict.pop('latest_test_idx') 119 group_dict['test_idx'] = test_idx 120 test_view = test_views[test_idx]
|
D | models.py | 203 test_idx = dbmodels.AutoField(primary_key=True) variable in Test 231 'immutable' % (attribute, self.test_idx)) 718 test_idx = dbmodels.IntegerField('test index', primary_key=True) variable in TestView
|
D | rpc_interface_unittest_fixme.py | 213 (test.test_idx, iteration, attribute, value))
|
/external/autotest/site_utils/ |
D | run_suite_unittest.py | 30 def _build_view(self, test_idx, test_name, subdir, status, afe_job_id, argument 59 return {'test_idx': test_idx, 'test_name': test_name, 'subdir':subdir,
|
/external/opencv3/modules/core/test/ |
D | test_ds.cpp | 941 int test_idx = cvtest::randInt(rng) % count; in test_seq_ops() local 942 elem2 = cvGetSeqElem( seq_slice, test_idx ); in test_seq_ops() 943 schar* elem3 = cvGetSeqElem( seq, pos + test_idx ); in test_seq_ops() 945 … memcmp( elem2, cvTsSimpleSeqElem(sseq,pos + test_idx), elem_size) == 0, in test_seq_ops()
|