Home
last modified time | relevance | path

Searched refs:PyUnicodeObject (Results 1 – 18 of 18) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dunicodeobject.c97 static PyUnicodeObject *free_list = NULL;
101 static PyUnicodeObject *unicode_empty = NULL;
117 static PyUnicodeObject *unicode_latin1[256] = {NULL};
260 int unicode_resize(register PyUnicodeObject *unicode, in unicode_resize()
317 PyUnicodeObject *_PyUnicode_New(Py_ssize_t length) in _PyUnicode_New()
319 register PyUnicodeObject *unicode; in _PyUnicode_New()
329 return (PyUnicodeObject *)PyErr_NoMemory(); in _PyUnicode_New()
335 free_list = *(PyUnicodeObject **)unicode; in _PyUnicode_New()
354 unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type); in _PyUnicode_New()
388 void unicode_dealloc(register PyUnicodeObject *unicode) in unicode_dealloc()
[all …]
Dstringobject.c1901 res = _PyUnicode_XStrip((PyUnicodeObject *)uniself, in do_argstrip()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dunicodeobject.c96 static PyUnicodeObject *free_list;
100 static PyUnicodeObject *unicode_empty;
104 static PyUnicodeObject *unicode_latin1[256];
247 int unicode_resize(register PyUnicodeObject *unicode, in unicode_resize()
304 PyUnicodeObject *_PyUnicode_New(Py_ssize_t length) in _PyUnicode_New()
306 register PyUnicodeObject *unicode; in _PyUnicode_New()
316 return (PyUnicodeObject *)PyErr_NoMemory(); in _PyUnicode_New()
322 free_list = *(PyUnicodeObject **)unicode; in _PyUnicode_New()
341 unicode = PyObject_New(PyUnicodeObject, &PyUnicode_Type); in _PyUnicode_New()
375 void unicode_dealloc(register PyUnicodeObject *unicode) in unicode_dealloc()
[all …]
Dstringobject.c1884 res = _PyUnicode_XStrip((PyUnicodeObject *)uniself, in do_argstrip()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dunicodedata.c92 static Py_UCS4 getuchar(PyUnicodeObject *obj) in getuchar()
121 PyUnicodeObject *v; in unicodedata_decimal()
172 PyUnicodeObject *v; in unicodedata_digit()
206 PyUnicodeObject *v; in unicodedata_numeric()
255 PyUnicodeObject *v; in unicodedata_category()
284 PyUnicodeObject *v; in unicodedata_bidirectional()
315 PyUnicodeObject *v; in unicodedata_combining()
344 PyUnicodeObject *v; in unicodedata_mirrored()
374 PyUnicodeObject *v; in unicodedata_east_asian_width()
403 PyUnicodeObject *v; in unicodedata_decomposition()
[all …]
D_localemodule.c322 if (PyUnicode_AsWideChar((PyUnicodeObject*)os1, ws1, len1) == -1) in PyLocale_strcoll()
331 if (PyUnicode_AsWideChar((PyUnicodeObject*)os2, ws2, len2) == -1) in PyLocale_strcoll()
Dpyexpat.c1244 PyUnicodeObject *_u_string = NULL; in PyUnknownEncodingHandler()
1249 _u_string = (PyUnicodeObject *) in PyUnknownEncodingHandler()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dunicodedata.c92 static Py_UCS4 getuchar(PyUnicodeObject *obj) in getuchar()
121 PyUnicodeObject *v; in unicodedata_decimal()
172 PyUnicodeObject *v; in unicodedata_digit()
206 PyUnicodeObject *v; in unicodedata_numeric()
255 PyUnicodeObject *v; in unicodedata_category()
284 PyUnicodeObject *v; in unicodedata_bidirectional()
315 PyUnicodeObject *v; in unicodedata_combining()
344 PyUnicodeObject *v; in unicodedata_mirrored()
374 PyUnicodeObject *v; in unicodedata_east_asian_width()
403 PyUnicodeObject *v; in unicodedata_decomposition()
[all …]
D_localemodule.c322 if (PyUnicode_AsWideChar((PyUnicodeObject*)os1, ws1, len1) == -1) in PyLocale_strcoll()
331 if (PyUnicode_AsWideChar((PyUnicodeObject*)os2, ws2, len2) == -1) in PyLocale_strcoll()
Dpyexpat.c1241 PyUnicodeObject *_u_string = NULL; in PyUnknownEncodingHandler()
1246 _u_string = (PyUnicodeObject *) in PyUnknownEncodingHandler()
Dposixmodule.c1464 PyUnicodeObject *po; in posix_do_stat()
1524 PyUnicodeObject *po; in posix_access()
1676 PyUnicodeObject *po; in posix_chmod()
2424 PyUnicodeObject *po; in posix__getfullpathname()
2479 PyUnicodeObject *po; in posix_mkdir()
2778 PyUnicodeObject *obwpath; in posix_utime()
6400 PyUnicodeObject *po; in posix_open()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
Dunicodedefs.h9 #define STRINGLIB_OBJECT PyUnicodeObject
Dfind.h157 PyUnicodeObject **substring, in stringlib_parse_args_finds_unicode()
167 *substring = (PyUnicodeObject *)tmp_substring; in stringlib_parse_args_finds_unicode()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
Dunicodedefs.h9 #define STRINGLIB_OBJECT PyUnicodeObject
Dfind.h157 PyUnicodeObject **substring, in stringlib_parse_args_finds_unicode()
167 *substring = (PyUnicodeObject *)tmp_substring; in stringlib_parse_args_finds_unicode()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dunicodeobject.h423 } PyUnicodeObject; typedef
433 (((PyUnicodeObject *)(op))->length)
435 (((PyUnicodeObject *)(op))->length * sizeof(Py_UNICODE))
437 (((PyUnicodeObject *)(op))->str)
439 ((const char *)((PyUnicodeObject *)(op))->str)
592 PyUnicodeObject *unicode, /* Unicode object */
1331 PyUnicodeObject *self,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dunicodeobject.h423 } PyUnicodeObject; typedef
433 (((PyUnicodeObject *)(op))->length)
435 (((PyUnicodeObject *)(op))->length * sizeof(Py_UNICODE))
437 (((PyUnicodeObject *)(op))->str)
439 ((const char *)((PyUnicodeObject *)(op))->str)
592 PyUnicodeObject *unicode, /* Unicode object */
1331 PyUnicodeObject *self,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dedk2module.c1075 PyUnicodeObject *po; in posix__getfullpathname()