• Home
  • Raw
  • Download

Lines Matching refs:MatchObject

3278 match_dealloc(MatchObject* self)  in match_dealloc()
3287 match_getslice_by_index(MatchObject* self, Py_ssize_t index, PyObject* def) in match_getslice_by_index()
3312 match_getindex(MatchObject* self, PyObject* index) in match_getindex()
3335 match_getslice(MatchObject* self, PyObject* index, PyObject* def) in match_getslice()
3341 match_expand(MatchObject* self, PyObject* ptemplate) in match_expand()
3351 match_group(MatchObject* self, PyObject* args) in match_group()
3386 match_groups(MatchObject* self, PyObject* args, PyObject* kw) in match_groups()
3414 match_groupdict(MatchObject* self, PyObject* args, PyObject* kw) in match_groupdict()
3460 match_start(MatchObject* self, PyObject* args) in match_start()
3483 match_end(MatchObject* self, PyObject* args) in match_end()
3533 match_span(MatchObject* self, PyObject* args) in match_span()
3556 match_regs(MatchObject* self) in match_regs()
3582 match_copy(MatchObject* self, PyObject *unused) in match_copy()
3585 MatchObject* copy; in match_copy()
3590 copy = PyObject_NEW_VAR(MatchObject, &Match_Type, slots); in match_copy()
3596 offset = offsetof(MatchObject, string); in match_copy()
3603 sizeof(MatchObject) + slots * sizeof(Py_ssize_t) - offset); in match_copy()
3613 match_deepcopy(MatchObject* self, PyObject* memo) in match_deepcopy()
3616 MatchObject* copy; in match_deepcopy()
3618 copy = (MatchObject*) match_copy(self); in match_deepcopy()
3689 match_lastindex_get(MatchObject *self) in match_lastindex_get()
3698 match_lastgroup_get(MatchObject *self) in match_lastgroup_get()
3713 match_regs_get(MatchObject *self) in match_regs_get()
3729 #define MATCH_OFF(x) offsetof(MatchObject, x)
3745 sizeof(MatchObject), sizeof(Py_ssize_t),
3779 MatchObject* match; in pattern_new_match()
3788 match = PyObject_NEW_VAR(MatchObject, &Match_Type, in pattern_new_match()