Lines Matching refs:self
6 "size($self, /)\n"
15 EncodingMap_size_impl(struct encoding_map *self);
18 EncodingMap_size(struct encoding_map *self, PyObject *Py_UNUSED(ignored))
20 return EncodingMap_size_impl(self);
24 "title($self, /)\n"
36 unicode_title_impl(PyObject *self);
39 unicode_title(PyObject *self, PyObject *Py_UNUSED(ignored))
41 return unicode_title_impl(self);
45 "capitalize($self, /)\n"
57 unicode_capitalize_impl(PyObject *self);
60 unicode_capitalize(PyObject *self, PyObject *Py_UNUSED(ignored))
62 return unicode_capitalize_impl(self);
66 "casefold($self, /)\n"
75 unicode_casefold_impl(PyObject *self);
78 unicode_casefold(PyObject *self, PyObject *Py_UNUSED(ignored))
80 return unicode_casefold_impl(self);
84 "center($self, width, fillchar=\' \', /)\n"
95 unicode_center_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
98 unicode_center(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
126 return_value = unicode_center_impl(self, width, fillchar);
133 "encode($self, /, encoding=\'utf-8\', errors=\'strict\')\n"
151 unicode_encode_impl(PyObject *self, const char *encoding, const char *errors);
154 unicode_encode(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
203 return_value = unicode_encode_impl(self, encoding, errors);
210 "expandtabs($self, /, tabsize=8)\n"
221 unicode_expandtabs_impl(PyObject *self, int tabsize);
224 unicode_expandtabs(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
245 return_value = unicode_expandtabs_impl(self, tabsize);
252 "isascii($self, /)\n"
264 unicode_isascii_impl(PyObject *self);
267 unicode_isascii(PyObject *self, PyObject *Py_UNUSED(ignored))
269 return unicode_isascii_impl(self);
273 "islower($self, /)\n"
285 unicode_islower_impl(PyObject *self);
288 unicode_islower(PyObject *self, PyObject *Py_UNUSED(ignored))
290 return unicode_islower_impl(self);
294 "isupper($self, /)\n"
306 unicode_isupper_impl(PyObject *self);
309 unicode_isupper(PyObject *self, PyObject *Py_UNUSED(ignored))
311 return unicode_isupper_impl(self);
315 "istitle($self, /)\n"
327 unicode_istitle_impl(PyObject *self);
330 unicode_istitle(PyObject *self, PyObject *Py_UNUSED(ignored))
332 return unicode_istitle_impl(self);
336 "isspace($self, /)\n"
348 unicode_isspace_impl(PyObject *self);
351 unicode_isspace(PyObject *self, PyObject *Py_UNUSED(ignored))
353 return unicode_isspace_impl(self);
357 "isalpha($self, /)\n"
369 unicode_isalpha_impl(PyObject *self);
372 unicode_isalpha(PyObject *self, PyObject *Py_UNUSED(ignored))
374 return unicode_isalpha_impl(self);
378 "isalnum($self, /)\n"
390 unicode_isalnum_impl(PyObject *self);
393 unicode_isalnum(PyObject *self, PyObject *Py_UNUSED(ignored))
395 return unicode_isalnum_impl(self);
399 "isdecimal($self, /)\n"
411 unicode_isdecimal_impl(PyObject *self);
414 unicode_isdecimal(PyObject *self, PyObject *Py_UNUSED(ignored))
416 return unicode_isdecimal_impl(self);
420 "isdigit($self, /)\n"
432 unicode_isdigit_impl(PyObject *self);
435 unicode_isdigit(PyObject *self, PyObject *Py_UNUSED(ignored))
437 return unicode_isdigit_impl(self);
441 "isnumeric($self, /)\n"
453 unicode_isnumeric_impl(PyObject *self);
456 unicode_isnumeric(PyObject *self, PyObject *Py_UNUSED(ignored))
458 return unicode_isnumeric_impl(self);
462 "isidentifier($self, /)\n"
474 unicode_isidentifier_impl(PyObject *self);
477 unicode_isidentifier(PyObject *self, PyObject *Py_UNUSED(ignored))
479 return unicode_isidentifier_impl(self);
483 "isprintable($self, /)\n"
495 unicode_isprintable_impl(PyObject *self);
498 unicode_isprintable(PyObject *self, PyObject *Py_UNUSED(ignored))
500 return unicode_isprintable_impl(self);
504 "join($self, iterable, /)\n"
518 "ljust($self, width, fillchar=\' \', /)\n"
529 unicode_ljust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
532 unicode_ljust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
560 return_value = unicode_ljust_impl(self, width, fillchar);
567 "lower($self, /)\n"
576 unicode_lower_impl(PyObject *self);
579 unicode_lower(PyObject *self, PyObject *Py_UNUSED(ignored))
581 return unicode_lower_impl(self);
585 "strip($self, chars=None, /)\n"
596 unicode_strip_impl(PyObject *self, PyObject *chars);
599 unicode_strip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
612 return_value = unicode_strip_impl(self, chars);
619 "lstrip($self, chars=None, /)\n"
630 unicode_lstrip_impl(PyObject *self, PyObject *chars);
633 unicode_lstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
646 return_value = unicode_lstrip_impl(self, chars);
653 "rstrip($self, chars=None, /)\n"
664 unicode_rstrip_impl(PyObject *self, PyObject *chars);
667 unicode_rstrip(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
680 return_value = unicode_rstrip_impl(self, chars);
687 "replace($self, old, new, count=-1, /)\n"
703 unicode_replace_impl(PyObject *self, PyObject *old, PyObject *new,
707 unicode_replace(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
749 return_value = unicode_replace_impl(self, old, new, count);
756 "removeprefix($self, prefix, /)\n"
768 unicode_removeprefix_impl(PyObject *self, PyObject *prefix);
771 unicode_removeprefix(PyObject *self, PyObject *arg)
784 return_value = unicode_removeprefix_impl(self, prefix);
791 "removesuffix($self, suffix, /)\n"
804 unicode_removesuffix_impl(PyObject *self, PyObject *suffix);
807 unicode_removesuffix(PyObject *self, PyObject *arg)
820 return_value = unicode_removesuffix_impl(self, suffix);
827 "rjust($self, width, fillchar=\' \', /)\n"
838 unicode_rjust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
841 unicode_rjust(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
869 return_value = unicode_rjust_impl(self, width, fillchar);
876 "split($self, /, sep=None, maxsplit=-1)\n"
899 unicode_split_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
902 unicode_split(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
938 return_value = unicode_split_impl(self, sep, maxsplit);
945 "partition($self, sep, /)\n"
961 "rpartition($self, sep, /)\n"
977 "rsplit($self, /, sep=None, maxsplit=-1)\n"
998 unicode_rsplit_impl(PyObject *self, PyObject *sep, Py_ssize_t maxsplit);
1001 unicode_rsplit(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1037 return_value = unicode_rsplit_impl(self, sep, maxsplit);
1044 "splitlines($self, /, keepends=False)\n"
1056 unicode_splitlines_impl(PyObject *self, int keepends);
1059 unicode_splitlines(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
1080 return_value = unicode_splitlines_impl(self, keepends);
1087 "swapcase($self, /)\n"
1096 unicode_swapcase_impl(PyObject *self);
1099 unicode_swapcase(PyObject *self, PyObject *Py_UNUSED(ignored))
1101 return unicode_swapcase_impl(self);
1166 "translate($self, table, /)\n"
1183 "upper($self, /)\n"
1192 unicode_upper_impl(PyObject *self);
1195 unicode_upper(PyObject *self, PyObject *Py_UNUSED(ignored))
1197 return unicode_upper_impl(self);
1201 "zfill($self, width, /)\n"
1212 unicode_zfill_impl(PyObject *self, Py_ssize_t width);
1215 unicode_zfill(PyObject *self, PyObject *arg)
1232 return_value = unicode_zfill_impl(self, width);
1239 "__format__($self, format_spec, /)\n"
1248 unicode___format___impl(PyObject *self, PyObject *format_spec);
1251 unicode___format__(PyObject *self, PyObject *arg)
1264 return_value = unicode___format___impl(self, format_spec);
1271 "__sizeof__($self, /)\n"
1280 unicode_sizeof_impl(PyObject *self);
1283 unicode_sizeof(PyObject *self, PyObject *Py_UNUSED(ignored))
1285 return unicode_sizeof_impl(self);