Searched refs:default_command (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | SearchDialog.py | 27 self.make_button("Find Next", self.default_command, 1) 29 def default_command(self, event=None): member in SearchDialog
|
D | GrepDialog.py | 61 self.make_button("Search Files", self.default_command, 1) 63 def default_command(self, event=None): member in GrepDialog
|
D | ReplaceDialog.py | 49 self.make_button("Replace+Find", self.default_command, 1) 59 def default_command(self, event=None): member in ReplaceDialog
|
D | SearchDialogBase.py | 76 top.bind("<Return>", self.default_command)
|
/external/python/cpython3/Lib/idlelib/ |
D | search.py | 32 self.make_button("Find Next", self.default_command, 1) 34 def default_command(self, event=None): member in SearchDialog
|
D | grep.py | 90 self.make_button("Search Files", self.default_command, 1) 92 def default_command(self, event=None): member in GrepDialog
|
D | searchbase.py | 78 top.bind("<Return>", self.default_command) 193 def default_command(self, dummy): pass member in _searchbase
|
D | replace.py | 58 self.make_button("Replace+Find", self.default_command, 1) 68 def default_command(self, event=None): member in ReplaceDialog
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_searchbase.py | 47 self.dialog.default_command = None 66 self.dialog.default_command = None
|
D | test_replace.py | 280 replace_find = self.dialog.default_command
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_searchdialogbase.py | 46 self.dialog.default_command = None 65 self.dialog.default_command = None
|