Home | History | Annotate | Download | only in Modules

Lines Matching refs:combining

24     const unsigned char combining;      /* combining class value 0 - 255 */

306 "combining(unichr)\n\
308 Returns the canonical combining class assigned to the Unicode\n\
309 character unichr as integer. Returns 0 if no combining class is\n\
319 if (!PyArg_ParseTuple(args, "O!:combining",
325 index = (int) _getrecord_ex(c)->combining;
586 prev = _getrecord_ex(*i)->combining;
589 cur = _getrecord_ex(*i)->combining;
603 prev = _getrecord_ex(*o)->combining;
607 prev = _getrecord_ex(*i)->combining;
691 int comb1 = _getrecord_ex(*i1)->combining;
704 Otherwise, record the combining class. */
757 unsigned char combining = record->combining;
762 if (combining && prev_combining > combining)
764 prev_combining = combining;
1184 {"combining", unicodedata_combining, METH_VARARGS,