Home | History | Annotate | Download | only in Include

Lines Matching defs:ascii

123    whitespace in most situations is solely ASCII whitespace, we
197 /* ASCII-only strings created through PyUnicode_New use the PyASCIIObject
198 structure. state.ascii and state.compact are set, and the data
204 - compact ascii:
210 * ascii = 1
214 * (since ASCII is decoded from UTF-8, the utf8 string are the data)
224 * ascii = 0
241 * ascii = 0
258 * utf8 is shared and utf8_length = length with data.any if ascii = 1
299 * if ascii is set, all characters are in the range U+0000-U+007F
300 (ASCII), otherwise at least one character is in the range
321 /* The string only contains characters in the range U+0000-U+007F (ASCII)
322 and the kind is PyUnicode_1BYTE_KIND. If ascii is set and compact is
324 unsigned int ascii:1;
337 /* Non-ASCII strings allocated through PyUnicode_New use the
417 /* Return true if the string contains only ASCII characters, or 0 if not. The
423 ((PyASCIIObject*)op)->state.ascii)
430 /* Return true if the string is a compact ASCII string (use PyASCIIObject
433 (((PyASCIIObject*)op)->state.ascii && PyUnicode_IS_COMPACT(op))
714 /* Create a new string from a buffer of ASCII characters.
715 WARNING: Don't check if the string contains any non-ASCII character. */
872 const char *format, /* ASCII-encoded string */
876 const char *format, /* ASCII-encoded string */
892 /* minimum character (default: 127, ASCII) */
969 /* Append an ASCII-encoded byte string.
973 const char *str, /* ASCII-encoded byte string */
1580 /* --- ASCII Codecs -------------------------------------------------------
1582 Only 7-bit ASCII data is excepted. All other codes generate errors.
1587 const char *string, /* ASCII encoded string */
1734 an output buffer using standard ASCII digit codes.
1740 corresponding ASCII digit and all other Latin-1 characters except
1765 corresponding ASCII digit code points.
1779 transforms spaces to ASCII because this is what the callers in longobject,
2058 /* Test whether a unicode is equal to ASCII identifier. Return 1 if true,
2059 0 otherwise. The right argument must be ASCII identifier.
2070 ASCII-encoded strings, but the function interprets the input string as
2071 ISO-8859-1 if it contains non-ASCII characters.
2076 const char *right /* ASCII-encoded string */
2080 /* Test whether a unicode is equal to ASCII string. Return 1 if true,
2081 0 otherwise. The right argument must be ASCII-encoded string.
2086 const char *right /* ASCII-encoded string */