/aosp_15_r20/external/python/cpython3/Modules/ |
D | _abc.c | 619 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl() 623 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl() 636 result = PyObject_CallMethodOneArg(self, &_Py_ID(__subclasscheck__), in _abc__abc_instancecheck_impl() 720 ok = PyObject_CallMethodOneArg( in _abc__abc_subclasscheck_impl()
|
D | arraymodule.c | 1557 res = PyObject_CallMethodOneArg(f, state->str_write, bytes); in array_array_tofile_impl()
|
D | _pickle.c | 5827 return PyObject_CallMethodOneArg(cls, &_Py_ID(__new__), cls); in instantiate()
|
/aosp_15_r20/external/python/cpython3/Modules/_io/ |
D | textio.c | 973 PyObject *res = PyObject_CallMethodOneArg( in _textiowrapper_fix_encoder_state() 1565 ret = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(write), b); in _textiowrapper_writeflush() 1640 b = PyObject_CallMethodOneArg(self->encoder, &_Py_ID(encode), text); in _io_TextIOWrapper_write_impl() 1831 input_chunk = PyObject_CallMethodOneArg(self->buffer, in textiowrapper_read_chunk() 2397 res = PyObject_CallMethodOneArg(self->encoder, &_Py_ID(setstate), in _textiowrapper_encoder_reset() 2539 res = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(seek), posobj); in _io_TextIOWrapper_seek_impl() 2821 res = PyObject_CallMethodOneArg( in _io_TextIOWrapper_tell_impl() 2836 res = PyObject_CallMethodOneArg( in _io_TextIOWrapper_tell_impl() 2864 return PyObject_CallMethodOneArg(self->buffer, &_Py_ID(truncate), pos); in _io_TextIOWrapper_truncate_impl() 3037 res = PyObject_CallMethodOneArg(self->buffer, &_Py_ID(_dealloc_warn), in _io_TextIOWrapper_close_impl()
|
D | bufferedio.c | 425 r = PyObject_CallMethodOneArg(self->raw, &_Py_ID(_dealloc_warn), source); in buffered_dealloc_warn() 1314 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(truncate), pos); in _io__Buffered_truncate_impl() 1460 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(readinto), memobj); in _bufferedreader_raw_read() 1817 res = PyObject_CallMethodOneArg(self->raw, &_Py_ID(write), memobj); in _bufferedwriter_raw_write()
|
D | fileio.c | 147 res = PyObject_CallMethodOneArg((PyObject*)&PyRawIOBase_Type, in _io_FileIO_close_impl()
|
D | winconsoleio.c | 197 res = PyObject_CallMethodOneArg((PyObject*)&PyRawIOBase_Type, in _io__WindowsConsoleIO_close_impl()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/ |
D | abstract.h | 77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/ |
D | abstract.h | 77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/ |
D | abstract.h | 77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/external/python/cpython3/Include/cpython/ |
D | abstract.h | 77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/ |
D | abstract.h | 77 #define _PyObject_CallMethodOneArg PyObject_CallMethodOneArg 111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | call.rst | 209 | :c:func:`PyObject_CallMethodOneArg` | obj + name | 1 object | --- | 341 .. c:function:: PyObject* PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg)
|
/aosp_15_r20/external/pytorch/torch/csrc/utils/ |
H A D | pythoncapi_compat.h | 420 PyObject_CallMethodOneArg(PyObject *obj, PyObject *name, PyObject *arg) in PyObject_CallMethodOneArg() function
|
/aosp_15_r20/external/pytorch/torch/csrc/dynamo/ |
H A D | python_compiled_autograd.cpp | 448 return check(PyObject_CallMethodOneArg(self, method_name, pyinput.get())); in call_end_capture()
|
H A D | guards.cpp | 1465 PyObject* call_result = PyObject_CallMethodOneArg( in check_nopybind()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | _warnings.c | 179 result = PyObject_CallMethodOneArg(obj, &_Py_ID(match), arg); in check_matched()
|
D | import.c | 1960 reloaded_module = PyObject_CallMethodOneArg(importlib, &_Py_ID(reload), m); in PyImport_ReloadModule()
|
D | sysmodule.c | 637 result = PyObject_CallMethodOneArg(buffer, &_Py_ID(write), encoded); in sys_displayhook_unencodable()
|
D | ceval.c | 2597 retval = PyObject_CallMethodOneArg(receiver, &_Py_ID(send), v);
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 948 ``PyObject_CallMethodNoArgs``, ``PyObject_CallMethodOneArg``,
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | dictobject.c | 4784 PyObject *tmp = PyObject_CallMethodOneArg( in dictviews_sub() 4995 PyObject *tmp = PyObject_CallMethodOneArg( in dictviews_xor()
|
D | abstract.c | 2890 *result = PyObject_CallMethodOneArg(iter, &_Py_ID(send), arg); in PyIter_Send()
|
D | typeobject.c | 4947 slotnames = PyObject_CallMethodOneArg( in _PyType_GetSlotNames()
|