HomeSort by relevance Sort by last modified time
    Searched refs:PyUnicode_IS_READY (Results 1 - 6 of 6) sorted by null

  /external/python/cpython3/Include/
unicodeobject.h 328 to minimize the test in PyUnicode_IS_READY(). */
422 assert(PyUnicode_IS_READY(op)), \
458 assert(PyUnicode_IS_READY(op)), \
521 assert(PyUnicode_IS_READY(unicode)), \
536 assert(PyUnicode_IS_READY(op)), \
543 #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready)
551 (PyUnicode_IS_READY(op) ? \
558 (assert(PyUnicode_IS_READY(op)), \
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 82 assert(PyUnicode_IS_READY(op)), \
90 assert(PyUnicode_IS_READY(op)), \
116 (PyUnicode_IS_READY(op) ? \
139 (!PyUnicode_IS_READY(op) || \
552 if (PyUnicode_IS_READY(unicode))
583 assert(PyUnicode_IS_READY(unicode));
650 assert(PyUnicode_IS_READY(unicode));
892 assert(PyUnicode_IS_READY(unicode));
954 if (PyUnicode_IS_READY(unicode)) {
    [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 771 assert(PyUnicode_IS_READY(value));
    [all...]
ast.c 642 assert(PyUnicode_IS_READY(id));
    [all...]
  /external/python/cpython3/Modules/
_tracemalloc.c 386 if (!PyUnicode_IS_READY(filename)) {
    [all...]
_testcapimodule.c     [all...]

Completed in 452 milliseconds