Lines Matching refs:search
15 # State shared by search, replace, and grep;
16 # the search dialogs bind these to UI elements.
17 self.patvar = StringVar(root) # search pattern
23 self.backvar = BooleanVar(root) # search backwards?
95 """Search a text widget for the pattern.
102 The search starts at the selection (if there is one) or
103 at the insert mark (otherwise). If the search is forward,
105 search, it starts at the left end. An empty match exactly
110 If the search is allowed to wrap around, it will return the
141 m = prog.search(chars[:-1], col)
182 # Helper to search backwards in a string.
186 m = prog.search(chars)
195 m = prog.search(chars, j)