HomeSort by relevance Sort by last modified time
    Searched refs:Py_UCS4 (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /external/python/cpython2/Include/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /external/python/cpython3/Include/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen,
27 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code,
unicodeobject.h 114 /* Py_UCS4 and Py_UCS2 are typedefs for the respective
116 typedef uint32_t Py_UCS4;
170 /* Join two surrogate characters and return a single Py_UCS4 value. */
172 (((((Py_UCS4)(high) & 0x03FF) << 10) | \
173 ((Py_UCS4)(low) & 0x03FF)) + 0x10000)
311 * character type = Py_UCS4 (32 bits, unsigned)
358 Py_UCS4 *ucs4;
447 Py_UCS2, or Py_UCS4 for direct character access.
453 #define PyUnicode_4BYTE_DATA(op) ((Py_UCS4*)PyUnicode_DATA(op))
498 ((Py_UCS4 *)(data))[(index)] = (Py_UCS4)(value);
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /prebuilts/gdb/linux-x86/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen);
26 int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code);
  /external/python/cpython3/Objects/
unicodectype.c 46 gettyperecord(Py_UCS4 code)
64 Py_UCS4 _PyUnicode_ToTitlecase(Py_UCS4 ch)
76 int _PyUnicode_IsTitlecase(Py_UCS4 ch)
86 int _PyUnicode_IsXidStart(Py_UCS4 ch)
96 int _PyUnicode_IsXidContinue(Py_UCS4 ch)
106 int _PyUnicode_ToDecimalDigit(Py_UCS4 ch)
113 int _PyUnicode_IsDecimalDigit(Py_UCS4 ch)
123 int _PyUnicode_ToDigit(Py_UCS4 ch)
130 int _PyUnicode_IsDigit(Py_UCS4 ch
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
unicodedata_db.h     [all...]
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
63 const change_record* (*getrecord)(Py_UCS4);
64 Py_UCS4 (*normalization)(Py_UCS4);
78 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4),
79 Py_UCS4 (*normalization)(Py_UCS4))
92 static Py_UCS4 getuchar(PyUnicodeObject *obj)
106 return (Py_UCS4)-1;
125 Py_UCS4 c;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
unicodedata_db.h     [all...]
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
63 const change_record* (*getrecord)(Py_UCS4);
64 Py_UCS4 (*normalization)(Py_UCS4);
78 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4),
79 Py_UCS4 (*normalization)(Py_UCS4))
92 static Py_UCS4 getuchar(PyUnicodeObject *obj)
106 return (Py_UCS4)-1;
125 Py_UCS4 c;
    [all...]
  /external/python/cpython2/Modules/
unicodedata_db.h     [all...]
unicodedata.c 46 _getrecord_ex(Py_UCS4 code)
63 const change_record* (*getrecord)(Py_UCS4);
64 Py_UCS4 (*normalization)(Py_UCS4);
78 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4),
79 Py_UCS4 (*normalization)(Py_UCS4))
92 static Py_UCS4 getuchar(PyUnicodeObject *obj)
106 return (Py_UCS4)-1;
125 Py_UCS4 c
    [all...]
  /external/python/cpython3/Modules/
unicodedata_db.h     [all...]
unicodedata.c 56 _getrecord_ex(Py_UCS4 code)
73 const change_record* (*getrecord)(Py_UCS4);
74 Py_UCS4 (*normalization)(Py_UCS4);
91 new_previous_version(const char*name, const change_record* (*getrecord)(Py_UCS4),
92 Py_UCS4 (*normalization)(Py_UCS4))
129 Py_UCS4 c = (Py_UCS4)chr;
180 Py_UCS4 c = (Py_UCS4)chr
    [all...]
  /external/python/cpython3/Objects/stringlib/
find_max_char.h 19 Py_LOCAL_INLINE(Py_UCS4)
59 Py_LOCAL_INLINE(Py_UCS4)
63 const Py_UCS4 mask_limit = MASK_UCS1;
64 const Py_UCS4 max_char_limit = MAX_CHAR_UCS2;
66 const Py_UCS4 mask_limit = MASK_UCS2;
67 const Py_UCS4 max_char_limit = MAX_CHAR_UCS4;
71 Py_UCS4 mask;
75 Py_UCS4 max_char;
replace.h 9 Py_UCS4 u1, Py_UCS4 u2, Py_ssize_t maxcount)
ucs4lib.h 11 #define STRINGLIB_CHAR Py_UCS4
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_tw.c 17 Py_UCS4 c = INCHAR1;
49 Py_UCS4 decoded;
76 Py_UCS4 c = INCHAR1;
108 Py_UCS4 decoded;
_codecs_cn.c 61 Py_UCS4 c = INCHAR1;
94 Py_UCS4 decoded;
122 Py_UCS4 c = INCHAR1;
155 Py_UCS4 decoded;
183 Py_UCS4 c = INCHAR1;
193 Py_UCS4 tc = c - 0x10000;
225 Py_UCS4 tc;
263 Py_UCS4 decoded;
277 Py_UCS4 lseq;
288 lseq = ((Py_UCS4)c * 10 + c2) * 1260
    [all...]
_codecs_iso2022.c 105 typedef Py_UCS4 (*iso2022_decode_func)(const unsigned char *data);
106 typedef DBCHAR (*iso2022_encode_func)(const Py_UCS4 *data, Py_ssize_t *length);
161 Py_UCS4 c = INCHAR1;
488 Py_UCS4 decoded;
582 static Py_UCS4
585 Py_UCS4 u;
593 ksx1001_encoder(const Py_UCS4 *data, Py_ssize_t *length)
619 static Py_UCS4
622 Py_UCS4 u;
632 jisx0208_encoder(const Py_UCS4 *data, Py_ssize_t *length
    [all...]
  /external/python/cpython3/Python/
formatter_unicode.c 12 unknown_presentation_type(Py_UCS4 presentation_type,
31 invalid_comma_type(Py_UCS4 presentation_type)
95 is_alignment_token(Py_UCS4 c)
107 is_sign_element(Py_UCS4 c)
127 Py_UCS4 fill_char;
128 Py_UCS4 align;
130 Py_UCS4 sign;
134 Py_UCS4 type;
328 calc_padding(Py_ssize_t nchars, Py_ssize_t width, Py_UCS4 align,
365 Py_UCS4 fill_char, Py_ssize_t n_lpadding
    [all...]

Completed in 451 milliseconds

1 2 3 4