Lines Matching refs:PyObject
14 static PyObject *
17 static PyObject *
18 EncodingMap_size(struct encoding_map *self, PyObject *Py_UNUSED(ignored))
35 static PyObject *
36 unicode_title_impl(PyObject *self);
38 static PyObject *
39 unicode_title(PyObject *self, PyObject *Py_UNUSED(ignored))
56 static PyObject *
57 unicode_capitalize_impl(PyObject *self);
59 static PyObject *
60 unicode_capitalize(PyObject *self, PyObject *Py_UNUSED(ignored))
74 static PyObject *
75 unicode_casefold_impl(PyObject *self);
77 static PyObject *
78 unicode_casefold(PyObject *self, PyObject *Py_UNUSED(ignored))
94 static PyObject *
95 unicode_center_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
97 static PyObject *
98 unicode_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
100 PyObject *return_value = NULL;
109 PyObject *iobj = _PyNumber_Index(args[0]);
150 static PyObject *
151 unicode_encode_impl(PyObject *self, const char *encoding, const char *errors);
153 static PyObject *
154 unicode_encode(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
156 PyObject *return_value = NULL;
159 PyObject *argsbuf[2];
220 static PyObject *
221 unicode_expandtabs_impl(PyObject *self, int tabsize);
223 static PyObject *
224 unicode_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
226 PyObject *return_value = NULL;
229 PyObject *argsbuf[1];
263 static PyObject *
264 unicode_isascii_impl(PyObject *self);
266 static PyObject *
267 unicode_isascii(PyObject *self, PyObject *Py_UNUSED(ignored))
284 static PyObject *
285 unicode_islower_impl(PyObject *self);
287 static PyObject *
288 unicode_islower(PyObject *self, PyObject *Py_UNUSED(ignored))
305 static PyObject *
306 unicode_isupper_impl(PyObject *self);
308 static PyObject *
309 unicode_isupper(PyObject *self, PyObject *Py_UNUSED(ignored))
326 static PyObject *
327 unicode_istitle_impl(PyObject *self);
329 static PyObject *
330 unicode_istitle(PyObject *self, PyObject *Py_UNUSED(ignored))
347 static PyObject *
348 unicode_isspace_impl(PyObject *self);
350 static PyObject *
351 unicode_isspace(PyObject *self, PyObject *Py_UNUSED(ignored))
368 static PyObject *
369 unicode_isalpha_impl(PyObject *self);
371 static PyObject *
372 unicode_isalpha(PyObject *self, PyObject *Py_UNUSED(ignored))
389 static PyObject *
390 unicode_isalnum_impl(PyObject *self);
392 static PyObject *
393 unicode_isalnum(PyObject *self, PyObject *Py_UNUSED(ignored))
410 static PyObject *
411 unicode_isdecimal_impl(PyObject *self);
413 static PyObject *
414 unicode_isdecimal(PyObject *self, PyObject *Py_UNUSED(ignored))
431 static PyObject *
432 unicode_isdigit_impl(PyObject *self);
434 static PyObject *
435 unicode_isdigit(PyObject *self, PyObject *Py_UNUSED(ignored))
452 static PyObject *
453 unicode_isnumeric_impl(PyObject *self);
455 static PyObject *
456 unicode_isnumeric(PyObject *self, PyObject *Py_UNUSED(ignored))
473 static PyObject *
474 unicode_isidentifier_impl(PyObject *self);
476 static PyObject *
477 unicode_isidentifier(PyObject *self, PyObject *Py_UNUSED(ignored))
494 static PyObject *
495 unicode_isprintable_impl(PyObject *self);
497 static PyObject *
498 unicode_isprintable(PyObject *self, PyObject *Py_UNUSED(ignored))
528 static PyObject *
529 unicode_ljust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
531 static PyObject *
532 unicode_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
534 PyObject *return_value = NULL;
543 PyObject *iobj = _PyNumber_Index(args[0]);
575 static PyObject *
576 unicode_lower_impl(PyObject *self);
578 static PyObject *
579 unicode_lower(PyObject *self, PyObject *Py_UNUSED(ignored))
595 static PyObject *
596 unicode_strip_impl(PyObject *self, PyObject *chars);
598 static PyObject *
599 unicode_strip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
601 PyObject *return_value = NULL;
602 PyObject *chars = Py_None;
629 static PyObject *
630 unicode_lstrip_impl(PyObject *self, PyObject *chars);
632 static PyObject *
633 unicode_lstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
635 PyObject *return_value = NULL;
636 PyObject *chars = Py_None;
663 static PyObject *
664 unicode_rstrip_impl(PyObject *self, PyObject *chars);
666 static PyObject *
667 unicode_rstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
669 PyObject *return_value = NULL;
670 PyObject *chars = Py_None;
702 static PyObject *
703 unicode_replace_impl(PyObject *self, PyObject *old, PyObject *new,
706 static PyObject *
707 unicode_replace(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
709 PyObject *return_value = NULL;
710 PyObject *old;
711 PyObject *new;
738 PyObject *iobj = _PyNumber_Index(args[2]);
767 static PyObject *
768 unicode_removeprefix_impl(PyObject *self, PyObject *prefix);
770 static PyObject *
771 unicode_removeprefix(PyObject *self, PyObject *arg)
773 PyObject *return_value = NULL;
774 PyObject *prefix;
803 static PyObject *
804 unicode_removesuffix_impl(PyObject *self, PyObject *suffix);
806 static PyObject *
807 unicode_removesuffix(PyObject *self, PyObject *arg)
809 PyObject *return_value = NULL;
810 PyObject *suffix;
837 static PyObject *
838 unicode_rjust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
840 static PyObject *
841 unicode_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
843 PyObject *return_value = NULL;
852 PyObject *iobj = _PyNumber_Index(args[0]);
898 static PyObject *
899 unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
901 static PyObject *
902 unicode_split(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
904 PyObject *return_value = NULL;
907 PyObject *argsbuf[2];
909 PyObject *sep = Py_None;
927 PyObject *iobj = _PyNumber_Index(args[1]);
997 static PyObject *
998 unicode_rsplit_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
1000 static PyObject *
1001 unicode_rsplit(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1003 PyObject *return_value = NULL;
1006 PyObject *argsbuf[2];
1008 PyObject *sep = Py_None;
1026 PyObject *iobj = _PyNumber_Index(args[1]);
1055 static PyObject *
1056 unicode_splitlines_impl(PyObject *self, int keepends);
1058 static PyObject *
1059 unicode_splitlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1061 PyObject *return_value = NULL;
1064 PyObject *argsbuf[1];
1095 static PyObject *
1096 unicode_swapcase_impl(PyObject *self);
1098 static PyObject *
1099 unicode_swapcase(PyObject *self, PyObject *Py_UNUSED(ignored))
1121 static PyObject *
1122 unicode_maketrans_impl(PyObject *x, PyObject *y, PyObject *z);
1124 static PyObject *
1125 unicode_maketrans(void *null, PyObject *const *args, Py_ssize_t nargs)
1127 PyObject *return_value = NULL;
1128 PyObject *x;
1129 PyObject *y = NULL;
1130 PyObject *z = NULL;
1191 static PyObject *
1192 unicode_upper_impl(PyObject *self);
1194 static PyObject *
1195 unicode_upper(PyObject *self, PyObject *Py_UNUSED(ignored))
1211 static PyObject *
1212 unicode_zfill_impl(PyObject *self, Py_ssize_t width);
1214 static PyObject *
1215 unicode_zfill(PyObject *self, PyObject *arg)
1217 PyObject *return_value = NULL;
1222 PyObject *iobj = _PyNumber_Index(arg);
1247 static PyObject *
1248 unicode___format___impl(PyObject *self, PyObject *format_spec);
1250 static PyObject *
1251 unicode___format__(PyObject *self, PyObject *arg)
1253 PyObject *return_value = NULL;
1254 PyObject *format_spec;
1279 static PyObject *
1280 unicode_sizeof_impl(PyObject *self);
1282 static PyObject *
1283 unicode_sizeof(PyObject *self, PyObject *Py_UNUSED(ignored))
1288 static PyObject *
1289 unicode_new_impl(PyTypeObject *type, PyObject *x, const char *encoding,
1292 static PyObject *
1293 unicode_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
1295 PyObject *return_value = NULL;
1298 PyObject *argsbuf[3];
1299 PyObject * const *fastargs;
1302 PyObject *x = NULL;