Searched refs:SearchDialogBase (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | GrepDialog.py | 9 from idlelib.SearchDialogBase import SearchDialogBase 22 class GrepDialog(SearchDialogBase): 29 SearchDialogBase.__init__(self, root, engine) 35 SearchDialogBase.open(self, text, searchphrase) 47 SearchDialogBase.create_entries(self) 60 SearchDialogBase.create_command_buttons(self)
|
D | ReplaceDialog.py | 4 from idlelib.SearchDialogBase import SearchDialogBase 17 class ReplaceDialog(SearchDialogBase): 23 SearchDialogBase.__init__(self, root, engine) 27 SearchDialogBase.open(self, text) 42 SearchDialogBase.create_entries(self) 46 SearchDialogBase.create_command_buttons(self) 188 SearchDialogBase.close(self, event)
|
D | SearchDialog.py | 4 from idlelib.SearchDialogBase import SearchDialogBase 23 class SearchDialog(SearchDialogBase): 26 SearchDialogBase.create_widgets(self)
|
D | SearchDialogBase.py | 6 class SearchDialogBase: class
|
D | README.txt | 66 SearchDialogBase.py # Define base for search, replace, and grep dialogs. 151 --- # Next 5 items use SearchEngine; dialogs use SearchDialogBase
|
D | ChangeLog | 442 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 471 SearchBinding.py, SearchDialog.py, SearchDialogBase.py, 538 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 560 SearchDialog.py, SearchDialogBase.py, SearchEngine.py, 1389 …, WindowList.py, UndoDelegator.py, StackViewer.py, SearchEngine.py, SearchDialogBase.py, SearchDia…
|
D | NEWS.txt | 242 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_searchdialogbase.py | 11 from idlelib import SearchDialogBase as sdb 39 self.dialog = sdb.SearchDialogBase(root=self.root, engine=self.engine)
|
/external/python/cpython2/Misc/ |
D | NEWS | 1976 - Issue #18592: Add unittest for SearchDialogBase. Patch by Phil Webster.
|