Searched refs:_shapes (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | data_flow_ops.py | 164 self._shapes = [tensor_shape.TensorShape(s) for s in shapes] 166 self._shapes = [tensor_shape.unknown_shape() for _ in self._dtypes] 245 return self._shapes 340 for val, shape in zip(vals, self._shapes): 388 for val, shape in zip(vals, self._shapes): 454 for output, shape in zip(op.values(), self._shapes): 496 for output, shape in zip(op.values(), self._shapes): 538 for output, shape in zip(op.values(), self._shapes): 1059 self._shapes = [tensor_shape.TensorShape(s) for s in shapes] 1060 for i, shape in enumerate(self._shapes): [all …]
|
/external/python/cpython3/Lib/ |
D | turtle.py | 968 self._shapes = { 1141 self._shapes[name] = shape 1348 return sorted(self._shapes.keys()) 2494 if self._type == "polygon" == screen._shapes[shapeIndex]._type: 2496 if self._type == "image" == screen._shapes[shapeIndex]._type: 2503 self._type = screen._shapes[shapeIndex]._type 2507 self._item = screen._createimage(screen._shapes["blank"]._data) 2510 screen._shapes[shapeIndex]._data] 2742 ttype = screen._shapes[self.turtle.shapeIndex]._type 2746 q.turtle._item = screen._createimage(screen._shapes["blank"]._data) [all …]
|
/external/tensorflow/tensorflow/python/training/ |
D | input.py | 681 def _shapes(tensor_list_list, shapes, enqueue_many): function 777 shapes = _shapes([tensor_list], shapes, enqueue_many) 817 shapes = _shapes(tensor_list_list, shapes, enqueue_many) 856 shapes = _shapes([tensor_list], shapes, enqueue_many) 898 shapes = _shapes(tensor_list_list, shapes, enqueue_many)
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 923 self._shapes = { 1087 self._shapes[name] = shape 1295 return sorted(self._shapes.keys()) 2398 if self._type == "polygon" == screen._shapes[shapeIndex]._type: 2400 if self._type == "image" == screen._shapes[shapeIndex]._type: 2407 self._type = screen._shapes[shapeIndex]._type 2411 self._item = screen._createimage(screen._shapes["blank"]._data) 2414 screen._shapes[shapeIndex]._data] 2646 ttype = screen._shapes[self.turtle.shapeIndex]._type 2650 q.turtle._item = screen._createimage(screen._shapes["blank"]._data) [all …]
|