HomeSort by relevance Sort by last modified time
    Searched defs:unicode_empty (Results 1 - 2 of 2) 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...]

Completed in 1441 milliseconds