• Home
  • Raw
  • Download

Lines Matching refs:Py_UNICODE

14 /* Py_DEPRECATED(3.3) */ typedef wchar_t Py_UNICODE;  typedef
54 Py_UNICODE_COPY(Py_UNICODE *target, const Py_UNICODE *source, Py_ssize_t length) { in Py_UNICODE_COPY()
55 memcpy(target, source, (size_t)(length) * sizeof(Py_UNICODE)); in Py_UNICODE_COPY()
59 Py_UNICODE_FILL(Py_UNICODE *target, Py_UNICODE value, Py_ssize_t length) { in Py_UNICODE_FILL()
552 const Py_UNICODE *u, /* Unicode buffer */
580 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicode(
586 Py_DEPRECATED(3.3) PyAPI_FUNC(const Py_UNICODE *) _PyUnicode_AsUnicode(
595 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE *) PyUnicode_AsUnicodeAndSize(
601 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE) PyUnicode_GetMax(void);
781 const Py_UNICODE *s, /* Unicode char buffer */
790 const Py_UNICODE *data, /* Unicode char buffer */
811 const Py_UNICODE *data, /* Unicode char buffer */
819 const Py_UNICODE *data, /* Unicode char buffer */
853 const Py_UNICODE *data, /* Unicode char buffer */
879 const Py_UNICODE *data, /* Unicode char buffer */
886 const Py_UNICODE *data, /* Unicode char buffer */
897 const Py_UNICODE *data, /* Unicode char buffer */
909 const Py_UNICODE *data, /* Unicode char buffer */
917 const Py_UNICODE *data, /* Unicode char buffer */
942 const Py_UNICODE *data, /* Unicode char buffer */
952 const Py_UNICODE *data, /* Unicode char buffer */
983 Py_UNICODE *s, /* Unicode buffer */
997 Py_UNICODE *s, /* Unicode buffer */
1171 const Py_UNICODE *u
1174 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcpy(
1175 Py_UNICODE *s1,
1176 const Py_UNICODE *s2);
1178 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strcat(
1179 Py_UNICODE *s1, const Py_UNICODE *s2);
1181 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strncpy(
1182 Py_UNICODE *s1,
1183 const Py_UNICODE *s2,
1187 const Py_UNICODE *s1,
1188 const Py_UNICODE *s2
1192 const Py_UNICODE *s1,
1193 const Py_UNICODE *s2,
1197 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strchr(
1198 const Py_UNICODE *s,
1199 Py_UNICODE c
1202 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) Py_UNICODE_strrchr(
1203 const Py_UNICODE *s,
1204 Py_UNICODE c
1213 Py_DEPRECATED(3.3) PyAPI_FUNC(Py_UNICODE*) PyUnicode_AsUnicodeCopy(