Lines Matching defs:chars
5777 /* The remaining input chars are ignored if the callback
6067 /* The remaining input chars are ignored if the callback
6403 *first_invalid_escape = s-3; /* Back up 3 chars, since we've
7093 /* startpos for collecting unencodable chars */
7916 wchar_t chars[2];
7919 chars[0] = (wchar_t)ch;
7923 chars[0] = Py_UNICODE_HIGH_SURROGATE(ch);
7924 chars[1] = Py_UNICODE_LOW_SURROGATE(ch);
7929 chars, charsize,
8682 /* startpos for collecting unencodable chars */
9250 /* startpos for collecting untranslatable chars */
9479 * to put the grouping chars.
9539 Py_ssize_t remaining = n_digits; /* Number of chars remaining to
9570 /* Use n_zero zero's and n_chars chars */
9601 /* Use n_zero zero's and n_chars chars */
12683 chars: object = None
12688 If chars is given and not None, remove characters in chars instead.
12692 unicode_strip_impl(PyObject *self, PyObject *chars)
12695 return do_argstrip(self, BOTHSTRIP, chars);
12702 chars: object = None
12707 If chars is given and not None, remove characters in chars instead.
12711 unicode_lstrip_impl(PyObject *self, PyObject *chars)
12714 return do_argstrip(self, LEFTSTRIP, chars);
12721 chars: object = None
12726 If chars is given and not None, remove characters in chars instead.
12730 unicode_rstrip_impl(PyObject *self, PyObject *chars)
12733 return do_argstrip(self, RIGHTSTRIP, chars);
13458 /* create entries for translating chars in x to those in y */
13478 /* create entries for deleting chars in z */