Lines Matching defs:pos

161 "match($self, /, string, pos=0, endpos=sys.maxsize)\n"
171 PyObject *string, Py_ssize_t pos,
178 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
183 Py_ssize_t pos = 0;
205 pos = ival;
224 return_value = _sre_SRE_Pattern_match_impl(self, cls, string, pos, endpos);
231 "fullmatch($self, /, string, pos=0, endpos=sys.maxsize)\n"
241 PyObject *string, Py_ssize_t pos,
248 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
253 Py_ssize_t pos = 0;
275 pos = ival;
294 return_value = _sre_SRE_Pattern_fullmatch_impl(self, cls, string, pos, endpos);
301 "search($self, /, string, pos=0, endpos=sys.maxsize)\n"
313 PyObject *string, Py_ssize_t pos,
320 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
325 Py_ssize_t pos = 0;
347 pos = 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};
394 Py_ssize_t pos = 0;
416 pos = ival;
435 return_value = _sre_SRE_Pattern_findall_impl(self, string, pos, endpos);
442 "finditer($self, /, string, pos=0, endpos=sys.maxsize)\n"
454 PyObject *string, Py_ssize_t pos,
461 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
466 Py_ssize_t pos = 0;
488 pos = ival;
507 return_value = _sre_SRE_Pattern_finditer_impl(self, cls, string, pos, endpos);
514 "scanner($self, /, string, pos=0, endpos=sys.maxsize)\n"
523 PyObject *string, Py_ssize_t pos,
530 static const char * const _keywords[] = {"string", "pos", "endpos", NULL};
535 Py_ssize_t pos = 0;
557 pos = ival;
576 return_value = _sre_SRE_Pattern_scanner_impl(self, cls, string, pos, endpos);