Searched refs:list_x (Results 1 – 4 of 4) sorted by relevance
/external/autotest/client/site_tests/firmware_TouchMTB/tests/ |
D | mtb_unittest.py | 37 def __init__(self, list_x, list_y): argument 38 self.list_x = list_x 43 return (self.list_x, self.list_y) 63 def _call_get_reversed_motions(self, list_x, list_y, expected_x, argument 65 mtb = FakeMtb(list_x, list_y) 71 list_x = (10, 22 ,36, 54, 100) 73 self._call_get_reversed_motions(list_x, list_y, 0, 0, GV.TLBR) 76 list_x = (10, 22 ,36, 154, 100) 78 self._call_get_reversed_motions(list_x, list_y, -54, -8, GV.TLBR) 83 list_x, list_y = mtb_packets.get_x_y(slot) [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | mtb.py | 613 list_x = [] 647 list_x.append(prev_x) 649 return (list_x, list_y) 774 list_x = self._init_dict(target_slots, []) 809 list_x[s].append(x[s]) 812 return (list_x, list_y) 816 list_x, list_y = self.get_x_y_multiple_slots(target_slots) 817 points_list = [zip(list_x[slot], list_y[slot]) for slot in target_slots] 841 list_x, list_y = self.get_x_y(target_slot) 842 return zip(list_x, list_y) [all …]
|
D | validators.py | 270 list_x = [p.x for p in points] 273 return (list_x, list_y, list_t) 489 (list_x, list_y) = self.packets.get_x_y(self.finger) 493 ave_distance = self._simple_linear_regression(list_y, list_x) 496 ave_distance = self._simple_linear_regression(list_x, list_y) 610 def _calc_errors_all_axes(self, list_t, list_x, list_y): argument 614 list_t, list_x) 629 list_x, list_y, list_t = self._get_axes_by_finger(self.finger) 633 self.list_coords = {X: list_x} 639 self.list_coords = {X: list_x, Y: list_y}
|
/external/tensorflow/tensorflow/contrib/recurrent/python/ops/ |
D | recurrent.py | 206 list_x = nest.flatten(struct_x) 209 for x, y in zip(list_x, list_y):
|