Lines Matching defs:chr
120 chr: int(accept={str})
126 Returns the decimal value assigned to the character chr as integer.
132 unicodedata_UCD_decimal_impl(PyObject *self, int chr,
138 Py_UCS4 c = (Py_UCS4)chr;
173 chr: int(accept={str})
179 Returns the digit value assigned to the character chr as integer.
185 unicodedata_UCD_digit_impl(PyObject *self, int chr, PyObject *default_value)
189 Py_UCS4 c = (Py_UCS4)chr;
208 chr: int(accept={str})
214 Returns the numeric value assigned to the character chr as float.
220 unicodedata_UCD_numeric_impl(PyObject *self, int chr,
226 Py_UCS4 c = (Py_UCS4)chr;
260 chr: int(accept={str})
263 Returns the general category assigned to the character chr as string.
267 unicodedata_UCD_category_impl(PyObject *self, int chr)
271 Py_UCS4 c = (Py_UCS4)chr;
285 chr: int(accept={str})
288 Returns the bidirectional class assigned to the character chr as string.
294 unicodedata_UCD_bidirectional_impl(PyObject *self, int chr)
298 Py_UCS4 c = (Py_UCS4)chr;
314 chr: int(accept={str})
317 Returns the canonical combining class assigned to the character chr as integer.
323 unicodedata_UCD_combining_impl(PyObject *self, int chr)
327 Py_UCS4 c = (Py_UCS4)chr;
341 chr: int(accept={str})
344 Returns the mirrored property assigned to the character chr as integer.
351 unicodedata_UCD_mirrored_impl(PyObject *self, int chr)
355 Py_UCS4 c = (Py_UCS4)chr;
371 chr: int(accept={str})
374 Returns the east asian width assigned to the character chr as string.
378 unicodedata_UCD_east_asian_width_impl(PyObject *self, int chr)
382 Py_UCS4 c = (Py_UCS4)chr;
398 chr: int(accept={str})
401 Returns the character decomposition mapping assigned to the character chr as string.
407 unicodedata_UCD_decomposition_impl(PyObject *self, int chr)
414 Py_UCS4 c = (Py_UCS4)chr;
1349 chr: int(accept={str})
1353 Returns the name assigned to the character chr as a string.
1360 unicodedata_UCD_name_impl(PyObject *self, int chr, PyObject *default_value)
1364 Py_UCS4 c = (Py_UCS4)chr;