Lines Matching refs:endpos

161 "match($self, /, string, pos=0, endpos=sys.maxsize)\n"
172 Py_ssize_t endpos);
178 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
184 Py_ssize_t endpos = PY_SSIZE_T_MAX;
221 endpos = ival;
224 return_value = _sre_SRE_Pattern_match_impl(self, cls, string, pos, endpos);
231 "fullmatch($self, /, string, pos=0, endpos=sys.maxsize)\n"
242 Py_ssize_t endpos);
248 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
254 Py_ssize_t endpos = PY_SSIZE_T_MAX;
291 endpos = ival;
294 return_value = _sre_SRE_Pattern_fullmatch_impl(self, cls, string, pos, endpos);
301 "search($self, /, string, pos=0, endpos=sys.maxsize)\n"
314 Py_ssize_t endpos);
320 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
326 Py_ssize_t endpos = PY_SSIZE_T_MAX;
363 endpos = ival;
366 return_value = _sre_SRE_Pattern_search_impl(self, cls, string, pos, endpos);
373 "findall($self, /, string, pos=0, endpos=sys.maxsize)\n"
383 Py_ssize_t pos, Py_ssize_t endpos);
389 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
395 Py_ssize_t endpos = PY_SSIZE_T_MAX;
432 endpos = ival;
435 return_value = _sre_SRE_Pattern_findall_impl(self, string, pos, endpos);
442 "finditer($self, /, string, pos=0, endpos=sys.maxsize)\n"
455 Py_ssize_t endpos);
461 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
467 Py_ssize_t endpos = PY_SSIZE_T_MAX;
504 endpos = ival;
507 return_value = _sre_SRE_Pattern_finditer_impl(self, cls, string, pos, endpos);
514 "scanner($self, /, string, pos=0, endpos=sys.maxsize)\n"
524 Py_ssize_t endpos);
530 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
536 Py_ssize_t endpos = PY_SSIZE_T_MAX;
573 endpos = ival;
576 return_value = _sre_SRE_Pattern_scanner_impl(self, cls, string, pos, endpos);