Home
last modified time | relevance | path

Searched refs:match_getslice (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_sre.c1959 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice() function
1999 result = match_getslice(self, _PyLong_Zero, Py_None); in match_group()
2002 result = match_getslice(self, PyTuple_GET_ITEM(args, 0), Py_None); in match_group()
2010 PyObject* item = match_getslice( in match_group()
2027 return match_getslice(self, name, Py_None); in match_getitem()
2089 value = match_getslice(self, key, default_value); in _sre_SRE_Match_groupdict_impl()
/external/python/cpython2/Modules/
D_sre.c3349 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice() function
3374 result = match_getslice(self, Py_False, Py_None); in match_group()
3377 result = match_getslice(self, PyTuple_GET_ITEM(args, 0), Py_None); in match_group()
3385 PyObject* item = match_getslice( in match_group()
3454 value = match_getslice(self, key, def); in match_groupdict()