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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
unicodedefs.h 13 #define STRINGLIB_EMPTY unicode_empty
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
unicodedefs.h 13 #define STRINGLIB_EMPTY unicode_empty
  /external/python/cpython2/Objects/stringlib/
unicodedefs.h 13 #define STRINGLIB_EMPTY unicode_empty
  /external/python/cpython3/Objects/stringlib/
asciilib.h 14 #define STRINGLIB_EMPTY unicode_empty
ucs1lib.h 14 #define STRINGLIB_EMPTY unicode_empty
ucs2lib.h 14 #define STRINGLIB_EMPTY unicode_empty
ucs4lib.h 14 #define STRINGLIB_EMPTY unicode_empty
unicodedefs.h 16 #define STRINGLIB_EMPTY unicode_empty
  /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...]
  /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...]
  /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 185 static PyObject *unicode_empty = NULL; variable
189 if (unicode_empty != NULL) \
190 Py_INCREF(unicode_empty); \
192 unicode_empty = PyUnicode_New(0, 0); \
193 if (unicode_empty != NULL) { \
194 Py_INCREF(unicode_empty); \
195 assert(_PyUnicode_CheckConsistency(unicode_empty, 1)); \
203 return unicode_empty; \
515 if (unicode != unicode_empty) {
519 return unicode_empty;
    [all...]

Completed in 253 milliseconds