Searched refs:grid_location (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_geometry_managers.py | 808 self.root.grid_location() 810 self.root.grid_location(0) 812 self.root.grid_location(0, 0, 0) 814 self.root.grid_location('x', 'y') 816 self.root.grid_location('1c', 'y') 823 self.assertEqual(f.grid_location(10, 10), (-1, -1)) 826 self.assertEqual(t.grid_location(-10, -10), (-1, -1)) 827 self.assertEqual(t.grid_location(-10, 0), (-1, 0)) 828 self.assertEqual(t.grid_location(-1, 0), (-1, 0)) 829 self.assertEqual(t.grid_location(0, -10), (0, -1)) [all …]
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_geometry_managers.py | 821 self.root.grid_location() 823 self.root.grid_location(0) 825 self.root.grid_location(0, 0, 0) 827 self.root.grid_location('x', 'y') 829 self.root.grid_location('1c', 'y') 836 self.assertEqual(f.grid_location(10, 10), (-1, -1)) 839 self.assertEqual(t.grid_location(-10, -10), (-1, -1)) 840 self.assertEqual(t.grid_location(-10, 0), (-1, 0)) 841 self.assertEqual(t.grid_location(-1, 0), (-1, 0)) 842 self.assertEqual(t.grid_location(0, -10), (0, -1)) [all …]
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tkinter.py | 1449 def grid_location(self, x, y): member in Misc 2053 location = grid_location = Misc.grid_location
|
/external/python/cpython3/Lib/tkinter/ |
D | __init__.py | 1778 def grid_location(self, x, y): member in Misc 2512 location = grid_location = Misc.grid_location
|