Searched refs:tshape (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 2806 tshape = shape._data 2810 shape = tshape 2820 shape = [(lx*x, ly*y) for (x, y) in tshape] 2828 screen._drawimage(titem, self._position, tshape) 2832 for item, (poly, fc, oc) in zip(titem, tshape): 2870 tshape = shape._data 2875 shape = tshape 2885 shape = [(lx*x, ly*y) for (x, y) in tshape] 2894 screen._drawimage(stitem, self._position, tshape) 2897 for element in tshape: [all …]
|
/external/python/cpython3/Lib/ |
D | turtle.py | 3003 tshape = shape._data 3008 shape = self._polytrafo(self._getshapepoly(tshape)) 3013 screen._drawimage(titem, self._position, tshape) 3015 for item, (poly, fc, oc) in zip(titem, tshape): 3052 tshape = shape._data 3058 shape = self._polytrafo(self._getshapepoly(tshape)) 3064 screen._drawimage(stitem, self._position, tshape) 3067 for element in tshape: 3071 for item, (poly, fc, oc) in zip(stitem, tshape):
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | layout_assignment_test.cc | 758 Shape tshape = ShapeUtil::MakeTupleShape({shape, shape}); in TEST_F() local 773 HloInstruction::CreateParameter(0, tshape, "param")); in TEST_F() 789 HloInstruction::CreateParameter(0, tshape, "param")); in TEST_F()
|
/external/python/cpython3/Lib/test/ |
D | test_buffer.py | 2738 tshape = _tshape + [size] 2743 titems, tshape = cast_items(ex, tfmt, tsize, shape=tshape) 2746 self.assertRaises(TypeError, m.cast, tfmt, tshape) 2752 nd = ndarray(titems, shape=tshape, format=tfmt) 2754 m2 = m.cast(tfmt, shape=tshape) 2755 ndim = len(tshape) 2760 ndim=ndim, shape=tshape, strides=strides,
|