Home
last modified time | relevance | path

Searched refs:checkFloatParam (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_widgets.py436 self.checkFloatParam(widget, 'from', -10, 10.2, 11.7)
442 self.checkFloatParam(widget, 'increment', -1, 1, 10.2, 12.8, 0)
447 self.checkFloatParam(widget, 'to', -10, 10.2, 11.7)
652 self.checkFloatParam(widget, 'closeenough', 24, 2.4, 3.6, -3,
848 self.checkFloatParam(widget, 'bigincrement', 12.4, 23.6, -5)
856 self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=round)
869 self.checkFloatParam(widget, 'resolution', 4.2, 0, 6.7, -2)
886 self.checkFloatParam(widget, 'tickinterval', 1, 4.3, 7.6, 0,
893 self.checkFloatParam(widget, 'to', 300, 14.9, 15.1, -10,
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_widgets.py468 self.checkFloatParam(widget, 'from', -10, 10.2, 11.7)
474 self.checkFloatParam(widget, 'increment', -1, 1, 10.2, 12.8, 0)
479 self.checkFloatParam(widget, 'to', -10, 10.2, 11.7)
716 self.checkFloatParam(widget, 'closeenough', 24, 2.4, 3.6, -3,
935 self.checkFloatParam(widget, 'bigincrement', 12.4, 23.6, -5)
944 self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=conv)
957 self.checkFloatParam(widget, 'resolution', 4.2, 0, 6.7, -2)
974 self.checkFloatParam(widget, 'tickinterval', 1, 4.3, 7.6, 0,
981 self.checkFloatParam(widget, 'to', 300, 14.9, 15.1, -10,
/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_widgets.py768 self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=False)
776 self.checkFloatParam(widget, 'to', 300, 14.9, 15.1, -10, conv=False)
780 self.checkFloatParam(widget, 'value', 300, 14.9, 15.1, -10, conv=False)
874 self.checkFloatParam(widget, 'maximum', 150.2, 77.7, 0, -10, conv=False)
886 self.checkFloatParam(widget, 'value', 150.2, 77.7, 0, -10,
/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_widgets.py769 self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=False)
777 self.checkFloatParam(widget, 'to', 300, 14.9, 15.1, -10, conv=False)
781 self.checkFloatParam(widget, 'value', 300, 14.9, 15.1, -10, conv=False)
875 self.checkFloatParam(widget, 'maximum', 150.2, 77.7, 0, -10, conv=False)
887 self.checkFloatParam(widget, 'value', 150.2, 77.7, 0, -10,
/external/python/cpython3/Lib/tkinter/test/
Dwidget_tests.py104 def checkFloatParam(self, widget, name, *values, conv=float, **kwargs): member in AbstractWidgetTest
/external/python/cpython2/Lib/lib-tk/test/
Dwidget_tests.py111 def checkFloatParam(self, widget, name, *values, **kwargs): member in AbstractWidgetTest