/external/autotest/database/ |
D | schema_129.sql | 1046 `test_idx` int(10) unsigned NOT NULL, 1050 KEY `test_idx` (`test_idx`), 1051 …RAINT `tko_iteration_attributes_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… 1063 `test_idx` int(10) unsigned NOT NULL, 1071 KEY `test_idx` (`test_idx`), 1074 …STRAINT `tko_iteration_perf_value_ibfk` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… 1086 `test_idx` int(10) unsigned NOT NULL, 1090 KEY `test_idx` (`test_idx`), 1093 …ONSTRAINT `tko_iteration_result_ibfk_1` FOREIGN KEY (`test_idx`) REFERENCES `tko_tests` (`test_idx… 1367 `test_idx` int(10) unsigned NOT NULL, [all …]
|
/external/autotest/tko/ |
D | db.py | 469 for test_idx in self.find_tests(job_idx): 470 where = {'test_idx' : test_idx} 475 self.delete('tko_test_labels_tests', {'test_id': test_idx}) 586 test_idx = test.test_idx 588 {'test_idx': test_idx}, commit=commit) 589 where = {'test_idx': test_idx} 597 test_idx = test.test_idx = self.get_last_autonumber_value() 598 data = {'test_idx': test_idx} 616 data = {'test_idx': test_idx} 619 data = {'test_idx': test_idx, 'attribute': key, [all …]
|
D | parse.py | 585 old_tests = dict(((test, subdir), test_idx) 586 for test_idx, subdir, test in raw_old_tests) 591 test_idx = old_tests.pop((test.testname, test.subdir), None) 592 if test_idx is not None: 593 test.test_idx = test_idx 602 for test_idx in tests.itervalues(): 603 where = {'test_idx' : test_idx} 608 db.delete('tko_test_labels_tests', {'test_id': test_idx})
|
D | job_serializer_unittest.py | 55 tko_test.test_idx = 3 203 self.assertEqual(test.test_idx, newtest.test_idx)
|
D | job_serializer.py | 266 pb_test.test_idx = tko_test.test_idx
|
D | tko.proto | 34 optional int64 test_idx = 12; field
|
D | frontend.py | 222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx, argument 224 self.idx = test_idx
|
/external/autotest/contrib/ |
D | remove_old_tests_in_tko.sql | 11 WHILE EXISTS (SELECT test_idx FROM tko_tests WHERE started_time < @cutoff_date LIMIT 1) DO 22 …WHILE EXISTS (SELECT test_idx FROM tko_tests where started_time IS NULL and finished_time < @cutof…
|
/external/llvm-project/lldb/source/Plugins/Language/ObjC/ |
D | NSDictionary.cpp | 632 uint32_t test_idx = 0; in GetChildAtIndex() local 635 key_at_idx = m_data_ptr + (2 * test_idx * m_ptr_size); in GetChildAtIndex() 648 test_idx++; in GetChildAtIndex() 758 uint32_t test_idx = 0; in GetChildAtIndex() local 765 key_at_idx = m_keys_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() 766 val_at_idx = m_values_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() 775 test_idx++; in GetChildAtIndex() 1008 uint32_t test_idx = 0; in GetChildAtIndex() local 1011 key_at_idx = m_keys_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() 1012 val_at_idx = m_values_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() [all …]
|
D | NSSet.cpp | 494 uint32_t test_idx = 0; in GetChildAtIndex() local 497 obj_at_idx = m_data_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() 505 test_idx++; in GetChildAtIndex() 614 uint32_t test_idx = 0; in GetChildAtIndex() local 621 val_at_idx = m_values_ptr + (test_idx * m_ptr_size); in GetChildAtIndex() 627 test_idx++; in GetChildAtIndex() 785 uint32_t test_idx = 0; in GetChildAtIndex() local 788 obj_at_idx = m_objs_addr + (test_idx * m_ptr_size); in GetChildAtIndex() 796 test_idx++; in GetChildAtIndex()
|
/external/igt-gpu-tools/runner/ |
D | job_list.c | 304 for (size_t test_idx = 0; test_idx < lst->size; ++test_idx) { in list_all_tests() local 305 struct job_list_entry *current_entry = lst->entries + test_idx; in list_all_tests()
|
/external/autotest/frontend/tko/ |
D | rpc_interface.py | 120 test_idx = group_dict.pop('latest_test_idx') 121 group_dict['test_idx'] = test_idx 122 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)) 699 test_idx = dbmodels.IntegerField('test index', primary_key=True) variable in TestView
|
/external/autotest/site_utils/ |
D | perf_csv_uploader.py | 168 test_idx=attribute.test_id)
|