Home
last modified time | relevance | path

Searched refs:encoding_str (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Objects/
Dexceptions.c1632 PyObject *encoding_str = NULL; in UnicodeEncodeError_str() local
1643 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str()
1644 if (encoding_str == NULL) in UnicodeEncodeError_str()
1658 PyString_AS_STRING(encoding_str), in UnicodeEncodeError_str()
1666 PyString_AS_STRING(encoding_str), in UnicodeEncodeError_str()
1673 Py_XDECREF(encoding_str); in UnicodeEncodeError_str()
1720 PyObject *encoding_str = NULL; in UnicodeDecodeError_str() local
1731 encoding_str = PyObject_Str(uself->encoding); in UnicodeDecodeError_str()
1732 if (encoding_str == NULL) in UnicodeDecodeError_str()
1742 PyString_AS_STRING(encoding_str), in UnicodeDecodeError_str()
[all …]
/external/python/cpython3/Objects/
Dexceptions.c1929 PyObject *encoding_str = NULL; in UnicodeEncodeError_str() local
1940 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str()
1941 if (encoding_str == NULL) in UnicodeEncodeError_str()
1955 encoding_str, in UnicodeEncodeError_str()
1963 encoding_str, in UnicodeEncodeError_str()
1970 Py_XDECREF(encoding_str); in UnicodeEncodeError_str()
2051 PyObject *encoding_str = NULL; in UnicodeDecodeError_str() local
2062 encoding_str = PyObject_Str(uself->encoding); in UnicodeDecodeError_str()
2063 if (encoding_str == NULL) in UnicodeDecodeError_str()
2070 encoding_str, in UnicodeDecodeError_str()
[all …]
/external/python/cpython3/Python/
Dpylifecycle.c1862 PyObject *encoding_str = PyUnicode_FromWideChar(encoding, -1); in create_stdio() local
1863 if (encoding_str == NULL) { in create_stdio()
1871 Py_CLEAR(encoding_str); in create_stdio()
1876 buf, encoding_str, errors_str, in create_stdio()
1879 Py_CLEAR(encoding_str); in create_stdio()
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DDynamicRegisterInfo.cpp306 llvm::StringRef encoding_str; in SetRegisterInfo() local
307 if (reg_info_dict->GetValueForKeyAsString("encoding", encoding_str)) in SetRegisterInfo()
308 reg_info.encoding = Args::StringToEncoding(encoding_str, eEncodingUint); in SetRegisterInfo()