Lines Matching defs:nargs
98 unicode_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_center()
154 unicode_encode(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in unicode_encode()
224 unicode_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in unicode_expandtabs()
532 unicode_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_ljust()
599 unicode_strip(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_strip()
633 unicode_lstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_lstrip()
667 unicode_rstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_rstrip()
707 unicode_replace(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_replace()
841 unicode_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs) in unicode_rjust()
902 unicode_split(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in unicode_split()
1001 unicode_rsplit(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in unicode_rsplit()
1059 unicode_splitlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) in unicode_splitlines()
1125 unicode_maketrans(void *null, PyObject *const *args, Py_ssize_t nargs) in unicode_maketrans()
1300 Py_ssize_t nargs = PyTuple_GET_SIZE(args); in unicode_new() local