Searched refs:bytes_str (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Objects/ |
D | longobject.c | 1703 char **bytes_str) in long_to_decimal_string_internal() argument 1788 *bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, strlen); in long_to_decimal_string_internal() 1789 if (*bytes_str == NULL) { in long_to_decimal_string_internal() 1844 char *p = *bytes_str + strlen; in long_to_decimal_string_internal() 1846 assert(p == *bytes_str); in long_to_decimal_string_internal() 1869 (*bytes_str) += strlen; in long_to_decimal_string_internal() 1895 _PyBytesWriter *bytes_writer, char **bytes_str) in long_format_binary() argument 1956 *bytes_str = _PyBytesWriter_Prepare(bytes_writer, *bytes_str, sz); in long_format_binary() 1957 if (*bytes_str == NULL) in long_format_binary() 2021 char *p = *bytes_str + sz; in long_format_binary() [all …]
|
D | bytesobject.c | 1342 bytes_str(PyObject *op) in bytes_str() function 2901 bytes_str, /* tp_str */
|
/external/python/cpython3/Parser/pegen/ |
D | pegen.c | 2030 PyObject *bytes_str = NULL; in _PyPegen_concatenate_strings() local 2072 bytes_str = s; in _PyPegen_concatenate_strings() 2075 PyBytes_ConcatAndDel(&bytes_str, s); in _PyPegen_concatenate_strings() 2076 if (!bytes_str) { in _PyPegen_concatenate_strings() 2091 if (PyArena_AddPyObject(p->arena, bytes_str) < 0) { in _PyPegen_concatenate_strings() 2094 return Constant(bytes_str, NULL, first->lineno, first->col_offset, last->end_lineno, in _PyPegen_concatenate_strings() 2101 Py_XDECREF(bytes_str); in _PyPegen_concatenate_strings()
|
/external/python/dateutil/dateutil/test/ |
D | test_parser.py | 223 bytes_str = uni_str.encode() 225 res = parse(bytes_str)
|
/external/python/cpython3/Python/ |
D | ast.c | 5765 PyObject *bytes_str = NULL; in parsestrplus() local 5811 bytes_str = s; in parsestrplus() 5813 PyBytes_ConcatAndDel(&bytes_str, s); in parsestrplus() 5814 if (!bytes_str) in parsestrplus() 5826 if (PyArena_AddPyObject(c->c_arena, bytes_str) < 0) in parsestrplus() 5828 return Constant(bytes_str, NULL, LINENO(n), n->n_col_offset, in parsestrplus() 5833 assert(bytes_str == NULL); in parsestrplus() 5838 Py_XDECREF(bytes_str); in parsestrplus()
|
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
D | ProcessGDBRemote.cpp | 2262 llvm::StringRef addr_str, bytes_str; in SetThreadStopInfo() local 2263 std::tie(addr_str, bytes_str) = value.split('='); in SetThreadStopInfo() 2264 if (!addr_str.empty() && !bytes_str.empty()) { in SetThreadStopInfo() 2267 StringExtractor bytes(bytes_str); in SetThreadStopInfo()
|
/external/python/cpython2/Objects/ |
D | bytesobject.c | 1415 bytes_str(PyObject *op) in bytes_str() function 2855 bytes_str, /* tp_str */
|