Home
last modified time | relevance | path

Searched refs:endmatch (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/lib2to3/pgen2/
Dtokenize.py373 endmatch = endprog.match(line)
374 if endmatch:
375 pos = end = endmatch.end(0)
475 endmatch = endprog.match(line, pos)
476 if endmatch: # all on one line
477 pos = endmatch.end(0)
/third_party/python/Lib/
Dtokenize.py464 endmatch = endprog.match(line)
465 if endmatch:
466 pos = end = endmatch.end(0)
550 endmatch = endprog.match(line, pos)
551 if endmatch: # all on one line
552 pos = endmatch.end(0)
/third_party/pcre2/pcre2/src/
Dpcre2grep.c3121 char *endmatch = ptr + offsets[1]; in pcre2grep() local
3123 while (t < endmatch) in pcre2grep()
3126 if (t <= endmatch) linenumber++; else break; in pcre2grep()
3128 endmatch = end_of_line(endmatch, endptr, &ellength); in pcre2grep()
3129 linelength = endmatch - ptr - ellength; in pcre2grep()