Lines Matching defs:Find
362 # Find bar
372 label = QLabel("Find:")
441 def Find(self, direction):
446 self.finder.Find(value, direction, pattern, self.context)
458 self.Find(0)
477 self.Find(direction)
480 QMessageBox.information(self.bar, "Find", "'" + self.textbox.currentText() + "' not found")
724 def Find(self, value, direction, pattern, context, callback):
1069 def Find(self, value, direction, pattern, context):
1072 self.model.Find(value, direction, pattern, context, self.FindDone)
2519 def Find(self, value, direction, pattern, context, callback):
3268 def Find(self, value, direction, pattern, context):
3271 self.finder.Find(value, direction, pattern, context, self.FindDone)
4102 def Find(self, value, direction, pattern, context):
4105 self.finder.Find(value, direction, pattern, context, self.FindDone)
4222 def Find(self, value, direction, pattern, context):
4225 self.finder.Find(value, direction, pattern, context, self.FindDone)
4373 <h3>Find</h3>
4374 Ctrl-F displays a Find bar which finds function names by either an exact match or a pattern match.
4407 <h3>Find</h3>
4408 Ctrl-F displays a Find bar which finds substrings by either an exact match or a regular expression match.
4428 If not all data is fetched, a Fetch bar is provided. Ctrl-F displays a Find bar.
4459 <h3>Find</h3>
4460 Ctrl-F displays a Find bar which finds substrings by either an exact match or a regular expression match.
4630 edit_menu.addAction(CreateAction("&Find...", "Find items", self.Find, self, QKeySequence.Find))
4673 def Find(self):