• Home
  • Raw
  • Download

Lines Matching defs:ch

334 #define Py_UNICODE_ISSPACE(ch) iswspace(ch)  argument
336 #define Py_UNICODE_ISLOWER(ch) iswlower(ch) argument
337 #define Py_UNICODE_ISUPPER(ch) iswupper(ch) argument
338 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
339 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
341 #define Py_UNICODE_TOLOWER(ch) towlower(ch) argument
342 #define Py_UNICODE_TOUPPER(ch) towupper(ch) argument
343 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
345 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
346 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
347 #define Py_UNICODE_ISNUMERIC(ch) _PyUnicode_IsNumeric(ch) argument
349 #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch) argument
350 #define Py_UNICODE_TODIGIT(ch) _PyUnicode_ToDigit(ch) argument
351 #define Py_UNICODE_TONUMERIC(ch) _PyUnicode_ToNumeric(ch) argument
353 #define Py_UNICODE_ISALPHA(ch) iswalpha(ch) argument
363 #define Py_UNICODE_ISSPACE(ch) \ argument
366 #define Py_UNICODE_ISLOWER(ch) _PyUnicode_IsLowercase(ch) argument
367 #define Py_UNICODE_ISUPPER(ch) _PyUnicode_IsUppercase(ch) argument
368 #define Py_UNICODE_ISTITLE(ch) _PyUnicode_IsTitlecase(ch) argument
369 #define Py_UNICODE_ISLINEBREAK(ch) _PyUnicode_IsLinebreak(ch) argument
371 #define Py_UNICODE_TOLOWER(ch) _PyUnicode_ToLowercase(ch) argument
372 #define Py_UNICODE_TOUPPER(ch) _PyUnicode_ToUppercase(ch) argument
373 #define Py_UNICODE_TOTITLE(ch) _PyUnicode_ToTitlecase(ch) argument
375 #define Py_UNICODE_ISDECIMAL(ch) _PyUnicode_IsDecimalDigit(ch) argument
376 #define Py_UNICODE_ISDIGIT(ch) _PyUnicode_IsDigit(ch) argument
377 #define Py_UNICODE_ISNUMERIC(ch) _PyUnicode_IsNumeric(ch) argument
379 #define Py_UNICODE_TODECIMAL(ch) _PyUnicode_ToDecimalDigit(ch) argument
380 #define Py_UNICODE_TODIGIT(ch) _PyUnicode_ToDigit(ch) argument
381 #define Py_UNICODE_TONUMERIC(ch) _PyUnicode_ToNumeric(ch) argument
383 #define Py_UNICODE_ISALPHA(ch) _PyUnicode_IsAlpha(ch) argument
387 #define Py_UNICODE_ISALNUM(ch) \ argument