Searched refs:searchphrase (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/idlelib/ |
D | grep.py | 39 searchphrase = text.get("sel.first", "sel.last") 40 dialog.open(text, searchphrase, io) 90 def open(self, text, searchphrase, io=None): argument 101 SearchDialogBase.open(self, text, searchphrase)
|
D | searchbase.py | 50 def open(self, text, searchphrase=None): argument 59 if searchphrase: 61 self.ent.insert("end",searchphrase)
|
/external/python/cpython2/Lib/idlelib/ |
D | GrepDialog.py | 19 searchphrase = text.get("sel.first", "sel.last") 20 dialog.open(text, searchphrase, io) 34 def open(self, text, searchphrase, io=None): argument 35 SearchDialogBase.open(self, text, searchphrase)
|
D | SearchDialogBase.py | 47 def open(self, text, searchphrase=None): argument 55 if searchphrase: 57 self.ent.insert("end",searchphrase)
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_searchdialogbase.py | 55 self.dialog.open('text', searchphrase="hello")
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_searchbase.py | 57 self.dialog.open(text, searchphrase="hello")
|