HomeSort by relevance Sort by last modified time
    Searched defs:unicode_empty (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 101 static PyUnicodeObject *unicode_empty = NULL; variable
105 if (unicode_empty != NULL) \
106 Py_INCREF(unicode_empty); \
108 unicode_empty = _PyUnicode_New(0); \
109 if (unicode_empty != NULL) \
110 Py_INCREF(unicode_empty); \
112 return (PyObject *)unicode_empty; \
269 /* Resizing shared object (unicode_empty or single character
273 if (unicode == unicode_empty ||
322 if (length == 0 && unicode_empty != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 100 static PyUnicodeObject *unicode_empty; variable
256 /* Resizing shared object (unicode_empty or single character
260 if (unicode == unicode_empty ||
309 if (length == 0 && unicode_empty != NULL) {
310 Py_INCREF(unicode_empty);
311 return unicode_empty;
416 /* Resizing unicode_empty and single character objects is not
420 (v == unicode_empty || v->length == 1)) {
451 if (size == 0 && unicode_empty != NULL) {
452 Py_INCREF(unicode_empty);
    [all...]
  /external/python/cpython2/Objects/
unicodeobject.c 101 static PyUnicodeObject *unicode_empty = NULL; variable
105 if (unicode_empty != NULL) \
106 Py_INCREF(unicode_empty); \
108 unicode_empty = _PyUnicode_New(0); \
109 if (unicode_empty != NULL) \
110 Py_INCREF(unicode_empty); \
112 return (PyObject *)unicode_empty; \
269 /* Resizing shared object (unicode_empty or single character
273 if (unicode == unicode_empty ||
322 if (length == 0 && unicode_empty != NULL)
    [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 200 static PyObject *unicode_empty = NULL; variable
204 if (unicode_empty != NULL) \
205 Py_INCREF(unicode_empty); \
207 unicode_empty = PyUnicode_New(0, 0); \
208 if (unicode_empty != NULL) { \
209 Py_INCREF(unicode_empty); \
210 assert(_PyUnicode_CheckConsistency(unicode_empty, 1)); \
218 return unicode_empty; \
565 if (unicode != unicode_empty) {
569 return unicode_empty;
    [all...]

Completed in 761 milliseconds