Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_widgets.py435 self.checkFloatParam(widget, 'from', -10, 10.2, 11.7)
441 self.checkFloatParam(widget, 'increment', -1, 1, 10.2, 12.8, 0)
446 self.checkFloatParam(widget, 'to', -10, 10.2, 11.7)
651 self.checkFloatParam(widget, 'closeenough', 24, 2.4, 3.6, -3,
845 self.checkFloatParam(widget, 'bigincrement', 12.4, 23.6, -5)
853 self.checkFloatParam(widget, 'from', 100, 14.9, 15.1, conv=round)
866 self.checkFloatParam(widget, 'resolution', 4.2, 0, 6.7, -2)
883 self.checkFloatParam(widget, 'tickinterval', 1, 4.3, 7.6, 0,
890 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/cpython2/Lib/lib-tk/test/
Dwidget_tests.py111 def checkFloatParam(self, widget, name, *values, **kwargs): member in AbstractWidgetTest