Home
last modified time | relevance | path

Searched refs:DoubleVar (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Lib/lib-tk/test/test_tkinter/
Dtest_variables.py3 from Tkinter import (Variable, StringVar, IntVar, DoubleVar, BooleanVar, Tcl,
164 v = DoubleVar(self.root)
168 v = DoubleVar(self.root, 1.23, "name")
174 v = DoubleVar(self.root, 1.23, "name")
182 v = DoubleVar(self.root, name="name")
Dtest_widgets.py718 var = tkinter.DoubleVar(self.root)
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_variables.py3 from tkinter import (Variable, StringVar, IntVar, DoubleVar, BooleanVar, Tcl,
233 v = DoubleVar(self.root)
237 v = DoubleVar(self.root, 1.23, "name")
243 v = DoubleVar(self.root, 1.23, "name")
251 v = DoubleVar(self.root, name="name")
Dtest_widgets.py722 var = tkinter.DoubleVar(self.root)
/external/llvm/test/tools/llvm-pdbdump/Inputs/
DClassLayoutTest.cpp22 double DoubleVar; variable
/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_extensions.py24 myvar = tkinter.DoubleVar(self.root)
86 myvar = tkinter.DoubleVar(self.root, value=20)
Dtest_widgets.py835 var = tkinter.DoubleVar(self.root)
/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_extensions.py24 myvar = tkinter.DoubleVar(self.root)
82 myvar = tkinter.DoubleVar(self.root, value=20)
Dtest_widgets.py834 var = tkinter.DoubleVar(self.root)
/external/python/cpython2/Demo/tix/samples/
DControl.py38 demo_thrust = Tix.DoubleVar()
/external/llvm/test/tools/llvm-pdbdump/
Dclass-layout.test13 ; GLOBALS_TEST-DAG: double GlobalsTest::DoubleVar
/external/python/cpython2/Lib/lib-tk/test/
Dwidget_tests.py516 var = tkinter.DoubleVar(self.root)
/external/python/cpython3/Lib/tkinter/test/
Dwidget_tests.py498 var = tkinter.DoubleVar(self.root)
/external/python/cpython2/Doc/library/
Dtkinter.rst537 :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar`, and
/external/python/cpython3/Doc/library/
Dtkinter.rst529 :class:`StringVar`, :class:`IntVar`, :class:`DoubleVar`, and
/external/python/cpython2/Lib/lib-tk/
DTkinter.py375 class DoubleVar(Variable): class
/external/python/cpython3/Lib/tkinter/
D__init__.py509 class DoubleVar(Variable): class