Lines Matching refs:self
6 "decimal($self, chr, default=<unrepresentable>, /)\n"
19 unicodedata_UCD_decimal_impl(PyObject *self, int chr,
23 unicodedata_UCD_decimal(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
49 return_value = unicodedata_UCD_decimal_impl(self, chr, default_value);
56 "digit($self, chr, default=<unrepresentable>, /)\n"
69 unicodedata_UCD_digit_impl(PyObject *self, int chr, PyObject *default_value);
72 unicodedata_UCD_digit(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
98 return_value = unicodedata_UCD_digit_impl(self, chr, default_value);
105 "numeric($self, chr, default=<unrepresentable>, /)\n"
118 unicodedata_UCD_numeric_impl(PyObject *self, int chr,
122 unicodedata_UCD_numeric(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
148 return_value = unicodedata_UCD_numeric_impl(self, chr, default_value);
155 "category($self, chr, /)\n"
164 unicodedata_UCD_category_impl(PyObject *self, int chr);
167 unicodedata_UCD_category(PyObject *self, PyObject *arg)
184 return_value = unicodedata_UCD_category_impl(self, chr);
191 "bidirectional($self, chr, /)\n"
202 unicodedata_UCD_bidirectional_impl(PyObject *self, int chr);
205 unicodedata_UCD_bidirectional(PyObject *self, PyObject *arg)
222 return_value = unicodedata_UCD_bidirectional_impl(self, chr);
229 "combining($self, chr, /)\n"
240 unicodedata_UCD_combining_impl(PyObject *self, int chr);
243 unicodedata_UCD_combining(PyObject *self, PyObject *arg)
261 _return_value = unicodedata_UCD_combining_impl(self, chr);
272 "mirrored($self, chr, /)\n"
284 unicodedata_UCD_mirrored_impl(PyObject *self, int chr);
287 unicodedata_UCD_mirrored(PyObject *self, PyObject *arg)
305 _return_value = unicodedata_UCD_mirrored_impl(self, chr);
316 "east_asian_width($self, chr, /)\n"
325 unicodedata_UCD_east_asian_width_impl(PyObject *self, int chr);
328 unicodedata_UCD_east_asian_width(PyObject *self, PyObject *arg)
345 return_value = unicodedata_UCD_east_asian_width_impl(self, chr);
352 "decomposition($self, chr, /)\n"
363 unicodedata_UCD_decomposition_impl(PyObject *self, int chr);
366 unicodedata_UCD_decomposition(PyObject *self, PyObject *arg)
383 return_value = unicodedata_UCD_decomposition_impl(self, chr);
390 "is_normalized($self, form, unistr, /)\n"
401 unicodedata_UCD_is_normalized_impl(PyObject *self, PyObject *form,
405 unicodedata_UCD_is_normalized(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
430 return_value = unicodedata_UCD_is_normalized_impl(self, form, input);
437 "normalize($self, form, unistr, /)\n"
448 unicodedata_UCD_normalize_impl(PyObject *self, PyObject *form,
452 unicodedata_UCD_normalize(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
477 return_value = unicodedata_UCD_normalize_impl(self, form, input);
484 "name($self, chr, default=<unrepresentable>, /)\n"
496 unicodedata_UCD_name_impl(PyObject *self, int chr, PyObject *default_value);
499 unicodedata_UCD_name(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
525 return_value = unicodedata_UCD_name_impl(self, chr, default_value);
532 "lookup($self, name, /)\n"
544 unicodedata_UCD_lookup_impl(PyObject *self, const char *name,
548 unicodedata_UCD_lookup(PyObject *self, PyObject *arg)
557 return_value = unicodedata_UCD_lookup_impl(self, name, name_length);