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

  /external/python/cpython3/Include/
unicodeobject.h 324 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 97 assert(PyUnicode_IS_READY(op)), \
105 assert(PyUnicode_IS_READY(op)), \
131 (PyUnicode_IS_READY(op) ? \
154 (!PyUnicode_IS_READY(op) || \
602 if (PyUnicode_IS_READY(unicode))
633 assert(PyUnicode_IS_READY(unicode));
700 assert(PyUnicode_IS_READY(unicode));
934 assert(PyUnicode_IS_READY(unicode));
996 if (PyUnicode_IS_READY(unicode)) {
    [all...]
typeobject.c 35 PyUnicode_IS_READY(name) && \
    [all...]
  /external/python/cpython3/Modules/
_tracemalloc.c 387 if (!PyUnicode_IS_READY(filename)) {
    [all...]
_testcapimodule.c     [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 768 assert(PyUnicode_IS_READY(value));
    [all...]
ast.c 636 assert(PyUnicode_IS_READY(id));
    [all...]

Completed in 278 milliseconds