Lines Matching defs:Find
363 # Find bar
373 label = QLabel("Find:")
442 def Find(self, direction):
447 self.finder.Find(value, direction, pattern, self.context)
459 self.Find(0)
478 self.Find(direction)
481 QMessageBox.information(self.bar, "Find", "'" + self.textbox.currentText() + "' not found")
725 def Find(self, value, direction, pattern, context, callback):
1070 def Find(self, value, direction, pattern, context):
1073 self.model.Find(value, direction, pattern, context, self.FindDone)
2520 def Find(self, value, direction, pattern, context, callback):
3269 def Find(self, value, direction, pattern, context):
3272 self.finder.Find(value, direction, pattern, context, self.FindDone)
4103 def Find(self, value, direction, pattern, context):
4106 self.finder.Find(value, direction, pattern, context, self.FindDone)
4223 def Find(self, value, direction, pattern, context):
4226 self.finder.Find(value, direction, pattern, context, self.FindDone)
4374 <h3>Find</h3>
4375 Ctrl-F displays a Find bar which finds function names by either an exact match or a pattern match.
4408 <h3>Find</h3>
4409 Ctrl-F displays a Find bar which finds substrings by either an exact match or a regular expression match.
4429 If not all data is fetched, a Fetch bar is provided. Ctrl-F displays a Find bar.
4460 <h3>Find</h3>
4461 Ctrl-F displays a Find bar which finds substrings by either an exact match or a regular expression match.
4631 edit_menu.addAction(CreateAction("&Find...", "Find items", self.Find, self, QKeySequence.Find))
4674 def Find(self):