Lines Matching refs:MatchObject
3292 match_dealloc(MatchObject* self) in match_dealloc()
3301 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) in match_getslice_by_index()
3326 match_getindex(MatchObject* self, PyObject* index) in match_getindex()
3349 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice()
3355 match_expand(MatchObject* self, PyObject* ptemplate) in match_expand()
3365 match_group(MatchObject* self, PyObject* args) in match_group()
3400 match_groups(MatchObject* self, PyObject* args, PyObject* kw) in match_groups()
3428 match_groupdict(MatchObject* self, PyObject* args, PyObject* kw) in match_groupdict()
3474 match_start(MatchObject* self, PyObject* args) in match_start()
3497 match_end(MatchObject* self, PyObject* args) in match_end()
3547 match_span(MatchObject* self, PyObject* args) in match_span()
3570 match_regs(MatchObject* self) in match_regs()
3596 match_copy(MatchObject* self, PyObject *unused) in match_copy()
3599 MatchObject* copy; in match_copy()
3604 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy()
3610 offset = offsetof(MatchObject, string); in match_copy()
3617 sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset); in match_copy()
3627 match_deepcopy(MatchObject* self, PyObject* memo) in match_deepcopy()
3630 MatchObject* copy; in match_deepcopy()
3632 copy = (MatchObject*) match_copy(self); in match_deepcopy()
3703 match_lastindex_get(MatchObject *self) in match_lastindex_get()
3712 match_lastgroup_get(MatchObject *self) in match_lastgroup_get()
3727 match_regs_get(MatchObject *self) in match_regs_get()
3743 #define MATCH_OFF(x) offsetof(MatchObject, x)
3759 sizeof(MatchObject), sizeof(Py_ssize_t),
3793 MatchObject* match; in pattern_new_match()
3802 match = PyObject_NEW_VAR(MatchObject, &Match_Type, in pattern_new_match()