Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dtokenize.py327 endmatch = endprog.match(line)
328 if endmatch:
329 pos = end = endmatch.end(0)
410 endmatch = endprog.match(line, pos)
411 if endmatch: # all on one line
412 pos = endmatch.end(0)
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py380 endmatch = endprog.match(line)
381 if endmatch:
382 pos = end = endmatch.end(0)
458 endmatch = endprog.match(line, pos)
459 if endmatch: # all on one line
460 pos = endmatch.end(0)
/external/python/cpython3/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)
/external/python/cpython3/Lib/
Dtokenize.py520 endmatch = endprog.match(line)
521 if endmatch:
522 pos = end = endmatch.end(0)
606 endmatch = endprog.match(line, pos)
607 if endmatch: # all on one line
608 pos = endmatch.end(0)
/external/fonttools/Lib/fontTools/misc/
DpsLib.py85 endmatch=endofthingRE.match): argument
120 m = endmatch(buf, pos+1)
123 m = endmatch(buf, pos)
/external/pcre/dist2/src/
Dpcre2grep.c2926 char *endmatch = ptr + offsets[1]; in pcre2grep() local
2928 while (t < endmatch) in pcre2grep()
2931 if (t <= endmatch) linenumber++; else break; in pcre2grep()
2933 endmatch = end_of_line(endmatch, endptr, &ellength); in pcre2grep()
2934 linelength = endmatch - ptr - ellength; in pcre2grep()