Home
last modified time | relevance | path

Searched refs:find_longest_match (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/test/
Dtest_difflib.py513 match = sm.find_longest_match()
521 match = sm.find_longest_match(alo=2, blo=4)
529 match = sm.find_longest_match(bhi=5, blo=1)
541 match = sm.find_longest_match(0, len(a), 0, len(b))
/third_party/quickjs/
Djscompress.c666 static int find_longest_match(int *pdist, const uint8_t *src, int src_len, in find_longest_match() function
728 len = find_longest_match(&dist, src, src_len, hash_next, i); in lz_compress()
731 len1 = find_longest_match(&dist1, src, src_len, hash_next, i + 1); in lz_compress()
/third_party/python/Doc/library/
Ddifflib.rst425 .. method:: find_longest_match(alo=0, ahi=None, blo=0, bhi=None)
429 If *isjunk* was omitted or ``None``, :meth:`find_longest_match` returns
439 >>> s.find_longest_match(0, 5, 0, 9)
455 >>> s.find_longest_match(0, 5, 0, 9)
671 :meth:`~SequenceMatcher.find_longest_match` method's *isjunk*
/third_party/python/Lib/
Ddifflib.py305 def find_longest_match(self, alo=0, ahi=None, blo=0, bhi=None): member in SequenceMatcher
454 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
/third_party/python/Misc/NEWS.d/
D3.9.0b1.rst535 :meth:`difflib.SequenceMatcher.find_longest_match()`.