Home
last modified time | relevance | path

Searched refs:button1 (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Demo/tix/samples/
DBalloon.py39 button1 = Tix.Button(w, text='Something Unexpected',
43 button1.pack(side=Tix.TOP, expand=1)
50 b.bind_widget(button1, balloonmsg='Close Window',
/external/python/cpython2/Lib/idlelib/
DToolTip.py86 button1 = Button(root, text="Button 1")
88 button1.pack()
90 ToolTip(button1, "This is tooltip text for button1.")
/external/python/cpython3/Lib/idlelib/
Dtooltip.py173 button1 = Button(top, text="Button 1 -- 1/2 second hover delay")
174 button1.pack()
175 Hovertip(button1, "This is tooltip text for button1.", hover_delay=500)
/external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieActivity.java227 Button button1 = (Button)findViewById(R.id.open_lottie); in createLayout() local
228 button1.setOnClickListener(this); in createLayout()