Searched refs:STRINGLIB_NEW (Results 1 – 14 of 14) sorted by relevance
/third_party/python/Objects/stringlib/ |
D | partition.h | 34 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, str_len)); in STRINGLIB() 35 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 36 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 55 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in STRINGLIB() 59 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str + pos, str_len - pos)); in STRINGLIB() 91 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 92 PyTuple_SET_ITEM(out, 1, STRINGLIB_NEW(NULL, 0)); in STRINGLIB() 93 PyTuple_SET_ITEM(out, 2, STRINGLIB_NEW(str, str_len)); in STRINGLIB() 112 PyTuple_SET_ITEM(out, 0, STRINGLIB_NEW(str, pos)); in STRINGLIB() 116 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 | 20 #define STRINGLIB_NEW _PyUnicode_FromUCS4 macro
|
D | ucs2lib.h | 20 #define STRINGLIB_NEW _PyUnicode_FromUCS2 macro
|
D | ucs1lib.h | 20 #define STRINGLIB_NEW _PyUnicode_FromUCS1 macro
|
D | asciilib.h | 20 #define STRINGLIB_NEW(STR,LEN) _PyUnicode_FromASCII((const char*)(STR),(LEN)) macro
|
D | unicodedefs.h | 22 #define STRINGLIB_NEW PyUnicode_FromUnicode macro
|
D | stringdefs.h | 22 #define STRINGLIB_NEW PyBytes_FromStringAndSize macro
|
D | split.h | 21 sub = STRINGLIB_NEW((data) + (left), \ 33 sub = STRINGLIB_NEW((data) + (left), \
|
D | README.txt | 24 PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)
|
/third_party/python/Objects/ |
D | bytearrayobject.c | 1083 #define STRINGLIB_NEW PyByteArray_FromStringAndSize macro
|