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;
579 prev = _getrecord_ex(*i)->combining;
582 cur = _getrecord_ex(*i)->combining;
596 prev = _getrecord_ex(*o)->combining;
600 prev = _getrecord_ex(*i)->combining;
684 int comb1 = _getrecord_ex(*i1)->combining;
697 Otherwise, record the combining class. */
750 unsigned char combining = record->combining;
755 if (combining && prev_combining > combining)
757 prev_combining = combining;
1177 {"combining", unicodedata_combining, METH_VARARGS,