/external/python/cpython2/Modules/_io/ |
D | iobase.c | 186 res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); in iobase_close() 231 res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close, in _PyIOBase_finalize() 325 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL); in _PyIOBase_check_seekable() 354 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL); in _PyIOBase_check_readable() 383 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL); in _PyIOBase_check_writable() 412 return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL); in iobase_exit() 577 PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL); in iobase_iternext() 692 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in iobase_writelines() 820 res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL); in rawiobase_read()
|
D | textio.c | 275 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode() 492 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in incrementalnewlinedecoder_getstate() 538 return PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL); in incrementalnewlinedecoder_reset() 1049 cookieObj = PyObject_CallMethodObjArgs(buffer, _PyIO_str_tell, NULL); in textiowrapper_init() 1061 res = PyObject_CallMethodObjArgs(self->encoder, _PyIO_str_setstate, in textiowrapper_init() 1196 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in textiowrapper_detach() 1239 ret = PyObject_CallMethodObjArgs(self->buffer, in _textiowrapper_writeflush() 1302 b = PyObject_CallMethodObjArgs(self->encoder, in textiowrapper_write() 1328 ret = PyObject_CallMethodObjArgs(self->buffer, _PyIO_str_flush, NULL); in textiowrapper_write() 1416 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in textiowrapper_read_chunk() [all …]
|
D | bufferedio.c | 430 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush() 474 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close() 482 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close() 501 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach() 518 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable() 525 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable() 532 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable() 555 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno() 562 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty() 625 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell() [all …]
|
D | stringio.c | 326 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
|
/external/python/cpython3/Modules/_io/ |
D | iobase.c | 237 res = PyObject_CallMethodObjArgs(self, _PyIO_str_flush, NULL); in _io__IOBase_close_impl() 283 res = PyObject_CallMethodObjArgs((PyObject *) self, _PyIO_str_close, in iobase_finalize() 373 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_seekable, NULL); in _PyIOBase_check_seekable() 406 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_readable, NULL); in _PyIOBase_check_readable() 439 PyObject *res = PyObject_CallMethodObjArgs(self, _PyIO_str_writable, NULL); in _PyIOBase_check_writable() 468 return PyObject_CallMethodObjArgs(self, _PyIO_str_close, NULL); in iobase_exit() 646 PyObject *line = PyObject_CallMethodObjArgs(self, _PyIO_str_readline, NULL); in iobase_iternext() 769 res = PyObject_CallMethodObjArgs(self, _PyIO_str_write, line, NULL); in _io__IOBase_writelines() 915 res = PyObject_CallMethodObjArgs(self, _PyIO_str_readinto, b, NULL); in _io__RawIOBase_read_impl()
|
D | textio.c | 319 output = PyObject_CallMethodObjArgs(self->decoder, in _PyIncrementalNewlineDecoder_decode() 530 PyObject *state = PyObject_CallMethodObjArgs(self->decoder, in _io_IncrementalNewlineDecoder_getstate_impl() 604 return PyObject_CallMethodObjArgs(self->decoder, _PyIO_str_reset, NULL); in _io_IncrementalNewlineDecoder_reset_impl() 894 chars = PyObject_CallMethodObjArgs(decoder, _PyIO_str_decode, bytes, in _textiowrapper_decode() 957 PyObject *cookieObj = PyObject_CallMethodObjArgs( in _textiowrapper_fix_encoder_state() 971 PyObject *res = PyObject_CallMethodObjArgs( in _textiowrapper_fix_encoder_state() 1337 PyObject *res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in _io_TextIOWrapper_reconfigure_impl() 1476 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in _io_TextIOWrapper_detach_impl() 1507 ret = PyObject_CallMethodObjArgs(self->buffer, in _textiowrapper_writeflush() 1572 b = PyObject_CallMethodObjArgs(self->encoder, in _io_TextIOWrapper_write_impl() [all …]
|
D | bufferedio.c | 463 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_flush, NULL); in buffered_simple_flush() 515 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_close() 523 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_close, NULL); in buffered_close() 547 res = PyObject_CallMethodObjArgs((PyObject *)self, _PyIO_str_flush, NULL); in buffered_detach() 564 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_seekable, NULL); in buffered_seekable() 571 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_readable, NULL); in buffered_readable() 578 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_writable, NULL); in buffered_writable() 601 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_fileno, NULL); in buffered_fileno() 608 return PyObject_CallMethodObjArgs(self->raw, _PyIO_str_isatty, NULL); in buffered_isatty() 682 res = PyObject_CallMethodObjArgs(self->raw, _PyIO_str_tell, NULL); in _buffered_raw_tell() [all …]
|
D | stringio.c | 410 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
|
/external/python/cpython2/Python/ |
D | _warnings.c | 677 source = PyObject_CallMethodObjArgs(loader, get_source_name, in warnings_warn_explicit() 687 source_list = PyObject_CallMethodObjArgs((PyObject *)&PyString_Type, in warnings_warn_explicit()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 933 PyObject_CallMethodObjArgs:PyObject*::+1: 934 PyObject_CallMethodObjArgs:PyObject*:o:0: 935 PyObject_CallMethodObjArgs:PyObject*:name:0: 936 PyObject_CallMethodObjArgs::...::
|
/external/python/cpython2/Include/ |
D | abstract.h | 370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.8.rst | 7 In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't overwrite the
|
/external/python/cpython3/Include/ |
D | abstract.h | 355 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
|
/external/python/cpython3/Doc/c-api/ |
D | object.rst | 311 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative. 329 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, ..., NULL)
|
/external/python/cpython2/Doc/c-api/ |
D | object.rst | 281 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative. 294 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *o, PyObject *name, ..., NULL)
|
/external/python/cpython3/PC/ |
D | python3.def | 453 PyObject_CallMethodObjArgs=python37.PyObject_CallMethodObjArgs
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1581 PyObject_CallMethodObjArgs:PyObject*::+1: 1582 PyObject_CallMethodObjArgs:PyObject*:o:0: 1583 PyObject_CallMethodObjArgs:PyObject*:name:0: 1584 PyObject_CallMethodObjArgs::...::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 117 "PyObject_CallMethodObjArgs"
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tensor.cc | 336 PyObject* result = PyObject_CallMethodObjArgs( in MaybeInvokeCreatedOnEagerTensorProfiler()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 1328 ScopedPyObjectPtr result(PyObject_CallMethodObjArgs( in CheckAndGetInteger() 2479 ScopedPyObjectPtr encoded(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
|
/external/python/cpython3/Objects/ |
D | call.c | 1208 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) in PyObject_CallMethodObjArgs() function
|
/external/python/cpython2/Objects/ |
D | abstract.c | 2729 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) function
|
/external/python/cpython2/Misc/ |
D | HISTORY | 6384 PyObject_CallMethodObjArgs() have been added to make it more
|
/external/python/cpython3/Misc/ |
D | HISTORY | 23763 PyObject_CallMethodObjArgs() have been added to make it more
|