Home | History | Annotate | Download | only in pexpect-2.4

Lines Matching defs:search

311         seach buffer Pexpect will search for pattern matches. Every time
313 incomming buffer. The default is to search from the beginning of the
1341 search to just the end of the input buffer.
1354 to search for in the input.
1371 index = searcher.search(incoming, freshlen, searchwindowsize)
1588 """This is a plain string search helper for the spawn.expect_any() method.
1595 After a successful match by the search() method the following attributes
1635 def search(self, buffer, freshlen, searchwindowsize=None):
1637 """This searches 'buffer' for the first occurence of one of the search
1654 # Algorithm; pre-compiling the search through a list of
1656 # search for all N strings; realize that if we search for
1683 """This is regular expression string search helper for the
1691 After a successful match by the search() method the following attributes
1696 match - the re.match object returned by a succesful re.search
1733 def search(self, buffer, freshlen, searchwindowsize=None):
1753 match = s.search(buffer, searchstart)