Home
last modified time | relevance | path

Searched refs:STRINGLIB_NEW (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dpartition.h32 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()
Dtransmogrify.h54 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()
Dctype.h55 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()
Dunicodedefs.h23 #define STRINGLIB_NEW PyUnicode_FromUnicode macro
Dstring_format.h84 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()
Dstringdefs.h23 #define STRINGLIB_NEW PyString_FromStringAndSize macro
DREADME.txt24 PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)
Dsplit.h24 sub = STRINGLIB_NEW((data) + (left), \
36 sub = STRINGLIB_NEW((data) + (left), \
Dformatter.h714 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/
Dpartition.h29 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()
Dctype.h62 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()
Dtransmogrify.h24 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()
Djoin.h33 return STRINGLIB_NEW(NULL, 0); in STRINGLIB()
111 res = STRINGLIB_NEW(NULL, sz); in STRINGLIB()
Dundef.h8 #undef STRINGLIB_NEW
Ducs4lib.h21 #define STRINGLIB_NEW _PyUnicode_FromUCS4 macro
Ducs2lib.h21 #define STRINGLIB_NEW _PyUnicode_FromUCS2 macro
Ducs1lib.h21 #define STRINGLIB_NEW _PyUnicode_FromUCS1 macro
Dasciilib.h21 #define STRINGLIB_NEW(STR,LEN) _PyUnicode_FromASCII((const char*)(STR),(LEN)) macro
Dunicodedefs.h23 #define STRINGLIB_NEW PyUnicode_FromUnicode macro
Dstringdefs.h23 #define STRINGLIB_NEW PyBytes_FromStringAndSize macro
DREADME.txt24 PyObject* STRINGLIB_NEW(STRINGLIB_CHAR*, Py_ssize_t)
Dsplit.h21 sub = STRINGLIB_NEW((data) + (left), \
33 sub = STRINGLIB_NEW((data) + (left), \
/external/python/cpython3/Objects/
Dbytearrayobject.c1093 #define STRINGLIB_NEW PyByteArray_FromStringAndSize macro
/external/python/cpython2/Objects/
Dbytearrayobject.c1141 #define STRINGLIB_NEW PyByteArray_FromStringAndSize macro