Lines Matching refs:groupindex
578 Py_VISIT(self->groupindex);
587 Py_CLEAR(self->groupindex);
1390 /* PatternObject's 'groupindex' method. */
1394 if (self->groupindex == NULL)
1396 return PyDictProxy_New(self->groupindex);
1408 groupindex: object(subclass_of='&PyDict_Type')
1415 PyObject *code, Py_ssize_t groups, PyObject *groupindex,
1432 self->groupindex = NULL;
1478 if (PyDict_GET_SIZE(groupindex) > 0) {
1479 Py_INCREF(groupindex);
1480 self->groupindex = groupindex;
2069 if (self->pattern->groupindex) {
2070 index = PyDict_GetItemWithError(self->pattern->groupindex, index);
2212 if (!result || !self->pattern->groupindex)
2215 while (_PyDict_Next(self->pattern->groupindex, &pos, &key, &value, &hash)) {
2755 indexgroup nor groupindex: they are derivated from the pattern. */
2792 {"groupindex", (getter)pattern_groupindex, (setter)NULL,