Lines Matching refs:PyUnicode_Kind
435 enum PyUnicode_Kind {
440 /* Return values of the PyUnicode_KIND() macro: */
448 No checks are performed, use PyUnicode_KIND() before to ensure
456 #define PyUnicode_KIND(op) \
516 calls PyUnicode_KIND() and might call it twice. For single reads, use
523 (PyUnicode_KIND((unicode)) == PyUnicode_1BYTE_KIND ? \
525 (PyUnicode_KIND((unicode)) == PyUnicode_2BYTE_KIND ? \
561 (PyUnicode_KIND(op) == PyUnicode_1BYTE_KIND ? \
563 (PyUnicode_KIND(op) == PyUnicode_2BYTE_KIND ? \
884 enum PyUnicode_Kind kind;
944 enum PyUnicode_Kind kind);