/external/python/cpython2/Objects/stringlib/ |
D | partition.h | 32 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len)); in stringlib_partition() 33 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in stringlib_partition() 34 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0)); in stringlib_partition() 46 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in stringlib_partition() 50 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos)); in stringlib_partition() 82 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(NULL, 0)); in stringlib_rpartition() 83 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in stringlib_rpartition() 84 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str, str_len)); in stringlib_rpartition() 96 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in stringlib_rpartition() 100 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos)); in stringlib_rpartition()
|
D | transmogrify.h | 54 u = STRINGLIB_NEW(NULL, i + j); in stringlib_expandtabs() 98 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in pad() 105 u = STRINGLIB_NEW(NULL, in pad() 140 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in stringlib_ljust() 170 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in stringlib_rjust() 201 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in stringlib_center() 236 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in stringlib_zfill() 243 return STRINGLIB_NEW( in stringlib_zfill()
|
D | ctype.h | 55 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_lower() 67 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_upper() 79 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_title() 91 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_capitalize() 103 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_swapcase()
|
D | unicodedefs.h | 23 #define STRINGLIB_NEW PyUnicode_FromUnicode macro
|
D | string_format.h | 84 return STRINGLIB_NEW(str->ptr, str->end - str->ptr); in SubString_new_object() 92 return STRINGLIB_NEW(NULL, 0); in SubString_new_object_or_empty() 94 return STRINGLIB_NEW(str->ptr, str->end - str->ptr); in SubString_new_object_or_empty() 138 output->obj = STRINGLIB_NEW(NULL, size); in output_initialize() 600 format_spec_object = STRINGLIB_NEW(format_spec_start, in render_field() 1128 conversion_str = STRINGLIB_NEW(&conversion, 1); in formatteriter_next()
|
D | stringdefs.h | 23 #define STRINGLIB_NEW PyString_FromStringAndSize macro
|
D | README.txt | 24 PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)
|
D | split.h | 24 sub = STRINGLIB_NEW((data) + (left), \ 36 sub = STRINGLIB_NEW((data) + (left), \
|
D | formatter.h | 714 result = STRINGLIB_NEW(NULL, total); in format_string_internal() 899 result = STRINGLIB_NEW(NULL, n_total); in format_int_or_long_internal() 1053 result = STRINGLIB_NEW(NULL, n_total); in format_float_internal() 1268 result = STRINGLIB_NEW(NULL, total); in format_complex_internal()
|
/external/python/cpython3/Objects/stringlib/ |
D | partition.h | 29 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len)); in STRINGLIB() 30 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 31 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 48 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in STRINGLIB() 52 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos)); in STRINGLIB() 84 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 85 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 86 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str, str_len)); in STRINGLIB() 103 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in STRINGLIB() 107 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos)); in STRINGLIB()
|
D | ctype.h | 62 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_lower() 74 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_upper() 86 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_title() 98 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_capitalize() 110 newobj = STRINGLIB_NEW(NULL, STRINGLIB_LEN(self)); in stringlib_swapcase()
|
D | transmogrify.h | 24 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in return_self() 75 u = STRINGLIB_NEW(NULL, i + j); in stringlib_expandtabs_impl() 119 u = STRINGLIB_NEW(NULL, left + STRINGLIB_LEN(self) + right); in pad() 310 result = STRINGLIB_NEW(NULL, result_len); in stringlib_replace_interleave() 370 result = STRINGLIB_NEW(NULL, result_len); in stringlib_replace_delete_single_character() 419 result = STRINGLIB_NEW(NULL, result_len); in stringlib_replace_delete_substring() 467 result = STRINGLIB_NEW(NULL, self_len); in stringlib_replace_single_character_in_place() 517 result = STRINGLIB_NEW(NULL, self_len); in stringlib_replace_substring_in_place() 574 result = STRINGLIB_NEW(NULL, result_len); in stringlib_replace_single_character() 641 result = STRINGLIB_NEW(NULL, result_len); in stringlib_replace_substring()
|
D | join.h | 33 return STRINGLIB_NEW(NULL, 0); in STRINGLIB() 111 res = STRINGLIB_NEW(NULL, sz); in STRINGLIB()
|
D | undef.h | 8 #undef STRINGLIB_NEW
|
D | ucs4lib.h | 21 #define STRINGLIB_NEW _PyUnicode_FromUCS4 macro
|
D | ucs2lib.h | 21 #define STRINGLIB_NEW _PyUnicode_FromUCS2 macro
|
D | ucs1lib.h | 21 #define STRINGLIB_NEW _PyUnicode_FromUCS1 macro
|
D | asciilib.h | 21 #define STRINGLIB_NEW(STR,LEN) _PyUnicode_FromASCII((const char*)(STR),(LEN)) macro
|
D | unicodedefs.h | 23 #define STRINGLIB_NEW PyUnicode_FromUnicode macro
|
D | stringdefs.h | 23 #define STRINGLIB_NEW PyBytes_FromStringAndSize macro
|
D | README.txt | 24 PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)
|
D | split.h | 21 sub = STRINGLIB_NEW((data) + (left), \ 33 sub = STRINGLIB_NEW((data) + (left), \
|
/external/python/cpython3/Objects/ |
D | bytearrayobject.c | 1093 #define STRINGLIB_NEW PyByteArray_FromStringAndSize macro
|
/external/python/cpython2/Objects/ |
D | bytearrayobject.c | 1141 #define STRINGLIB_NEW PyByteArray_FromStringAndSize macro
|