Searched refs:row_id (Results 1 – 4 of 4) sorted by relevance
/external/chromium-trace/catapult/dashboard/dashboard/ |
D | add_point.py | 619 row_id = GetAndValidateRowId(row_dict) 630 if not _IsAcceptableRowId(row_id, last_row_id): 633 'or smaller by too much.' % (row_id, last_row_id)) 636 def _IsAcceptableRowId(row_id, last_row_id): argument 663 if row_id <= 0: 667 if row_id < 0.5 * last_row_id: 670 if row_id > 2 * last_row_id:
|
D | add_point_queue.py | 140 row_id = add_point.GetAndValidateRowId(row_dict) 146 id=test_path, revision=row_id) 152 if row_id != row_dict.get('revision'): 156 new_row = graph_data.Row(id=row_id, parent=test_container_key, **columns)
|
/external/autotest/scheduler/ |
D | monitor_db_unittest.py | 54 def __init__(self, row_id): argument 55 self.row_id = row_id 59 return list(parameter)[0] == self.row_id 63 return 'row with id %s' % self.row_id
|
D | scheduler_models.py | 224 def _fetch_row_from_db(self, row_id): argument 226 rows = _db.execute(sql, (row_id,)) 229 % (self.__table, row_id))
|