/aosp_15_r20/external/tensorflow/tensorflow/python/framework/ |
H A D | python_api_dispatcher.cc | 60 Safe_PyObjectPtr s1(PyObject_Str(selected)); in RaiseDispatchConflictError() 61 Safe_PyObjectPtr s2(PyObject_Str(target)); in RaiseDispatchConflictError() 85 Safe_PyObjectPtr s(PyObject_Str(py_class)); in RegisterDispatchableType() 160 Safe_PyObjectPtr target_str(PyObject_Str(target.second.get())); in DebugString()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | exceptions.c | 107 out = PyObject_Str(PyTuple_GET_ITEM(self->args, 0)); in BaseException_str() 110 out = PyObject_Str(self->args); in BaseException_str() 1153 str = PyObject_Str(self->msg); in SyntaxError_str() 1155 str = PyObject_Str(Py_None); in SyntaxError_str() 1640 reason_str = PyObject_Str(uself->reason); in UnicodeEncodeError_str() 1643 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str() 1728 reason_str = PyObject_Str(uself->reason); in UnicodeDecodeError_str() 1731 encoding_str = PyObject_Str(uself->encoding); in UnicodeDecodeError_str() 1828 reason_str = PyObject_Str(uself->reason); in UnicodeTranslateError_str()
|
/aosp_15_r20/external/libchrome/third_party/markupsafe/ |
H A D | _speedups.c | 145 PyObject *unicode = PyObject_Str(text); in escape() 178 return PyObject_Str(s); in soft_unicode()
|
/aosp_15_r20/external/python/markupsafe/src/markupsafe/ |
D | _speedups.c | 222 PyObject *unicode = PyObject_Str(text); in escape() 251 return PyObject_Str(s); in soft_str()
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | pegen_errors.c | 24 errstr = PyObject_Str(value); in _PyPegen_raise_tokenizer_init_error() 131 errstr = PyObject_Str(value); in _Pypegen_raise_decode_error()
|
/aosp_15_r20/external/python/cpython3/Objects/stringlib/ |
D | ucs2lib.h | 25 #define STRINGLIB_TOSTR PyObject_Str
|
D | ucs4lib.h | 25 #define STRINGLIB_TOSTR PyObject_Str
|
D | ucs1lib.h | 25 #define STRINGLIB_TOSTR PyObject_Str
|
D | unicodedefs.h | 27 #define STRINGLIB_TOSTR PyObject_Str
|
D | asciilib.h | 25 #define STRINGLIB_TOSTR PyObject_Str
|
D | stringdefs.h | 25 #define STRINGLIB_TOSTR PyObject_Str
|
/aosp_15_r20/external/python/cpython2/Objects/stringlib/ |
D | unicodedefs.h | 32 #define STRINGLIB_TOSTR PyObject_Str
|
D | stringdefs.h | 27 #define STRINGLIB_TOSTR PyObject_Str
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | exceptions.c | 126 return PyObject_Str(PyTuple_GET_ITEM(self->args, 0)); in BaseException_str() 128 return PyObject_Str(self->args); in BaseException_str() 2465 return PyObject_Str(self->msg ? self->msg : Py_None); in SyntaxError_str() 2916 reason_str = PyObject_Str(uself->reason); in UnicodeEncodeError_str() 2919 encoding_str = PyObject_Str(uself->encoding); in UnicodeEncodeError_str() 3029 reason_str = PyObject_Str(uself->reason); in UnicodeDecodeError_str() 3032 encoding_str = PyObject_Str(uself->encoding); in UnicodeDecodeError_str() 3125 reason_str = PyObject_Str(uself->reason); in UnicodeTranslateError_str()
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | pythonrun.c | 826 v = PyObject_Str(v); in PyRun_InteractiveOneFlags() 834 w = PyObject_Str(w); in PyRun_InteractiveOneFlags() 1307 PyObject *s = PyObject_Str(value); in PyErr_Display() 1645 u = PyObject_Str(value); in err_input()
|
D | _warnings.c | 325 text = PyObject_Str(message); in warn_explicit() 388 PyObject *to_str = PyObject_Str(item); in warn_explicit()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | pythonrun.c | 209 v = PyObject_Str(v); in PyRun_InteractiveOneObjectEx() 222 w = PyObject_Str(w); in PyRun_InteractiveOneObjectEx() 1077 PyObject *s = PyObject_Str(value); in print_exception_message() 1169 PyObject *note_str = PyObject_Str(note); in print_exception_notes()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/lib/core/ |
H A D | py_util.cc | 105 PyObject* str = PyObject_Str(pvalue); in PyExceptionFetch()
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | object.h | 463 PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *); 464 #define PyObject_Bytes PyObject_Str
|
/aosp_15_r20/external/tensorflow/tensorflow/python/util/ |
H A D | nest.cc | 39 auto str_o = make_safe(PyObject_Str(o)); in PyObject_ToString()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | grpmodule.c | 120 py_str_name = PyObject_Str(pyo_name); in grp_getgrnam()
|
/aosp_15_r20/external/protobuf/python/google/protobuf/pyext/ |
H A D | repeated_scalar_container.cc | 165 ScopedPyObjectPtr s(PyObject_Str(arg)); in AssignItem() 388 ScopedPyObjectPtr s(PyObject_Str(item)); in Append()
|
/aosp_15_r20/external/cronet/third_party/protobuf/python/google/protobuf/pyext/ |
H A D | repeated_scalar_container.cc | 165 ScopedPyObjectPtr s(PyObject_Str(arg)); in AssignItem() 388 ScopedPyObjectPtr s(PyObject_Str(item)); in Append()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | float.rst | 108 Use :func:`PyObject_Str` or :func:`PyOS_double_to_string` instead.
|
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 326 PyObject_Str
|