Home | History | Annotate | Download | only in pexpect

Lines Matching refs:search

326         seach buffer Pexpect will search for pattern matches. Every time
328 incomming buffer. The default is to search from the beginning of the
1412 search to just the end of the input buffer.
1427 what to search for in the input.
1445 index = searcher.search(incoming, freshlen, searchwindowsize)
1677 """This is a plain string search helper for the spawn.expect_any() method.
1686 After a successful match by the search() method the following attributes
1728 def search(self, buffer, freshlen, searchwindowsize=None):
1730 """This searches 'buffer' for the first occurence of one of the search
1747 # Algorithm; pre-compiling the search through a list of
1749 # search for all N strings; realize that if we search for
1777 """This is regular expression string search helper for the
1786 After a successful match by the search() method the following attributes
1791 match - the re.match object returned by a succesful re.search
1830 def search(self, buffer, freshlen, searchwindowsize=None):
1850 match = s.search(buffer, searchstart)