Lines Matching defs:chr

6 "decimal($self, chr, default=<unrepresentable>, /)\n"
11 "Returns the decimal value assigned to the character chr as integer.\n"
19 unicodedata_UCD_decimal_impl(PyObject *self, int chr,
26 int chr;
43 chr = PyUnicode_READ_CHAR(args[0], 0);
49 return_value = unicodedata_UCD_decimal_impl(self, chr, default_value);
56 "digit($self, chr, default=<unrepresentable>, /)\n"
61 "Returns the digit value assigned to the character chr as integer.\n"
69 unicodedata_UCD_digit_impl(PyObject *self, int chr, PyObject *default_value);
75 int chr;
92 chr = PyUnicode_READ_CHAR(args[0], 0);
98 return_value = unicodedata_UCD_digit_impl(self, chr, default_value);
105 "numeric($self, chr, default=<unrepresentable>, /)\n"
110 "Returns the numeric value assigned to the character chr as float.\n"
118 unicodedata_UCD_numeric_impl(PyObject *self, int chr,
125 int chr;
142 chr = PyUnicode_READ_CHAR(args[0], 0);
148 return_value = unicodedata_UCD_numeric_impl(self, chr, default_value);
155 "category($self, chr, /)\n"
158 "Returns the general category assigned to the character chr as string.");
164 unicodedata_UCD_category_impl(PyObject *self, int chr);
170 int chr;
183 chr = PyUnicode_READ_CHAR(arg, 0);
184 return_value = unicodedata_UCD_category_impl(self, chr);
191 "bidirectional($self, chr, /)\n"
194 "Returns the bidirectional class assigned to the character chr as string.\n"
202 unicodedata_UCD_bidirectional_impl(PyObject *self, int chr);
208 int chr;
221 chr = PyUnicode_READ_CHAR(arg, 0);
222 return_value = unicodedata_UCD_bidirectional_impl(self, chr);
229 "combining($self, chr, /)\n"
232 "Returns the canonical combining class assigned to the character chr as integer.\n"
240 unicodedata_UCD_combining_impl(PyObject *self, int chr);
246 int chr;
260 chr = PyUnicode_READ_CHAR(arg, 0);
261 _return_value = unicodedata_UCD_combining_impl(self, chr);
272 "mirrored($self, chr, /)\n"
275 "Returns the mirrored property assigned to the character chr as integer.\n"
284 unicodedata_UCD_mirrored_impl(PyObject *self, int chr);
290 int chr;
304 chr = PyUnicode_READ_CHAR(arg, 0);
305 _return_value = unicodedata_UCD_mirrored_impl(self, chr);
316 "east_asian_width($self, chr, /)\n"
319 "Returns the east asian width assigned to the character chr as string.");
325 unicodedata_UCD_east_asian_width_impl(PyObject *self, int chr);
331 int chr;
344 chr = PyUnicode_READ_CHAR(arg, 0);
345 return_value = unicodedata_UCD_east_asian_width_impl(self, chr);
352 "decomposition($self, chr, /)\n"
355 "Returns the character decomposition mapping assigned to the character chr as string.\n"
363 unicodedata_UCD_decomposition_impl(PyObject *self, int chr);
369 int chr;
382 chr = PyUnicode_READ_CHAR(arg, 0);
383 return_value = unicodedata_UCD_decomposition_impl(self, chr);
484 "name($self, chr, default=<unrepresentable>, /)\n"
487 "Returns the name assigned to the character chr as a string.\n"
496 unicodedata_UCD_name_impl(PyObject *self, int chr, PyObject *default_value);
502 int chr;
519 chr = PyUnicode_READ_CHAR(args[0], 0);
525 return_value = unicodedata_UCD_name_impl(self, chr, default_value);