Searched refs:_PyUnicode_FromASCII (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Objects/stringlib/ |
D | asciilib.h | 21 #define STRINGLIB_NEW(STR,LEN) _PyUnicode_FromASCII((char*)(STR),(LEN))
|
/external/python/cpython3/Python/ |
D | formatter_unicode.c | 1108 unicode_tmp = _PyUnicode_FromASCII(buf, n_digits); in format_float_internal() 1275 re_unicode_tmp = _PyUnicode_FromASCII(re_buf, n_re_digits); in format_complex_internal() 1280 im_unicode_tmp = _PyUnicode_FromASCII(im_buf, n_im_digits); in format_complex_internal()
|
/external/python/cpython3/Include/ |
D | unicodeobject.h | 716 PyAPI_FUNC(PyObject*) _PyUnicode_FromASCII(
|
/external/python/cpython3/Objects/ |
D | floatobject.c | 327 result = _PyUnicode_FromASCII(buf, strlen(buf)); in float_repr()
|
D | unicodeobject.c | 2170 _PyUnicode_FromASCII(const char *buffer, Py_ssize_t size) in _PyUnicode_FromASCII() function 12354 return _PyUnicode_FromASCII((char*)(data + start), length); in PyUnicode_Substring() 13692 str = _PyUnicode_FromASCII(ascii, len); in _PyUnicodeWriter_WriteASCIIString() 14122 *p_output = _PyUnicode_FromASCII(p, len); in formatfloat() 14262 unicode = _PyUnicode_FromASCII(buf, len); in _PyUnicode_FormatLong()
|