Home
last modified time | relevance | path

Searched refs:after_cancel (Results 1 – 24 of 24) sorted by relevance

/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
D3-1.c25 static volatile int after_cancel; variable
35 } while (after_cancel == 0 && thread_sleep_time < TIMEOUT_MS); in cleanup_func()
81 after_cancel = 1; in main()
/third_party/python/Lib/idlelib/idle_test/
Dtest_editor.py25 cls.root.after_cancel(id)
119 cls.root.after_cancel(id)
200 cls.root.after_cancel(id)
Dtest_runscript.py22 cls.root.after_cancel(id) # Need for EditorWindow.
Dtest_filelist.py20 cls.root.after_cancel(id)
Dtest_zoomheight.py25 cls.root.after_cancel(id) # Need for EditorWindow.
Dtest_iomenu.py27 cls.root.after_cancel(id) # Need for EditorWindow.
Dtest_colorizer.py274 text.after_cancel(save_id)
284 text.after_cancel(color.after_id)
337 text.after_cancel(color.after_id)
Dtest_autocomplete.py129 acp.text.after_cancel = cancel
164 acp.text.after_cancel = after
Dtest_zzdummy.py58 cls.root.after_cancel(id) # Need for EditorWindow.
DREADME.txt89 on the later shutdown. Then enable the after_cancel loop in the
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_misc.py96 root.after_cancel(timer1) # Cancel this event.
134 root.after_cancel(idle1) # Cancel this event.
151 root.after_cancel(None)
158 root.after_cancel(timer1)
166 root.after_cancel(timer1)
173 root.after_cancel(idle1)
/third_party/python/Lib/idlelib/
Dautocomplete.py91 self.text.after_cancel(self._delayed_completion_id)
111 self.text.after_cancel(self._delayed_completion_id)
Dcodecontext.py88 self.text.after_cancel(self.t1)
142 self.text.after_cancel(self.t1)
Dcolorizer.py212 self.after_cancel(after_id)
228 self.after_cancel(after_id)
Dtooltip.py134 self.anchor_widget.after_cancel(after_id)
Dcalltip_w.py110 self.anchor_widget.after_cancel(self.checkhide_after_id)
Dsidebar.py233 self.main_widget.after_cancel(auto_scrolling_after_id)
261 self.main_widget.after_cancel(auto_scrolling_after_id)
Dpyshell.py551 self.tkconsole.text.after_cancel(self._afterid)
/third_party/python/Misc/NEWS.d/
D3.7.0b3.rst348 In :mod:`tkinter`, ``after_cancel(None)`` now raises a :exc:`ValueError`
D3.6.5rc1.rst267 In :mod:`tkinter`, ``after_cancel(None)`` now raises a :exc:`ValueError`
D3.8.0a1.rst5743 In :mod:`tkinter`, ``after_cancel(None)`` now raises a :exc:`ValueError`
/third_party/python/Tools/demo/
Dsortvisu.py97 self.master.after_cancel(id)
/third_party/python/Lib/tkinter/
D__init__.py861 def after_cancel(self, id): member in Misc
/third_party/python/Misc/
DHISTORY21223 - SF bug 763637: fix exception in Tkinter with after_cancel
21249 - SF bug 763637: In Tkinter, change after_cancel() to handle tuples