Home
last modified time | relevance | path

Searched refs:PyObject_CallMethodObjArgs (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Modules/_io/
Diobase.c186 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()
Dtextio.c275 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 …]
Dbufferedio.c430 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 …]
Dstringio.c326 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
/external/python/cpython3/Modules/_io/
Diobase.c237 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()
Dtextio.c319 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 …]
Dbufferedio.c463 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 …]
Dstringio.c410 line = PyObject_CallMethodObjArgs((PyObject *)self, in stringio_iternext()
/external/python/cpython2/Python/
D_warnings.c677 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/
Drefcounts.dat933 PyObject_CallMethodObjArgs:PyObject*::+1:
934 PyObject_CallMethodObjArgs:PyObject*:o:0:
935 PyObject_CallMethodObjArgs:PyObject*:name:0:
936 PyObject_CallMethodObjArgs::...::
/external/python/cpython2/Include/
Dabstract.h370 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
/external/python/cpython2/Misc/NEWS.d/
D2.7.8.rst7 In PyObject_CallMethod and PyObject_CallMethodObjArgs, don't overwrite the
/external/python/cpython3/Include/
Dabstract.h355 PyAPI_FUNC(PyObject *) PyObject_CallMethodObjArgs(
/external/python/cpython3/Doc/c-api/
Dobject.rst311 :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/
Dobject.rst281 :c:func:`PyObject_CallMethodObjArgs` is a faster alternative.
294 .. c:function:: PyObject* PyObject_CallMethodObjArgs(PyObject *o, PyObject *name, ..., NULL)
/external/python/cpython3/PC/
Dpython3.def453 PyObject_CallMethodObjArgs=python37.PyObject_CallMethodObjArgs
/external/python/cpython3/Doc/data/
Drefcounts.dat1581 PyObject_CallMethodObjArgs:PyObject*::+1:
1582 PyObject_CallMethodObjArgs:PyObject*:o:0:
1583 PyObject_CallMethodObjArgs:PyObject*:name:0:
1584 PyObject_CallMethodObjArgs::...::
/external/python/cpython2/PC/os2emx/
Dpython27.def117 "PyObject_CallMethodObjArgs"
/external/tensorflow/tensorflow/python/eager/
Dpywrap_tensor.cc336 PyObject* result = PyObject_CallMethodObjArgs( in MaybeInvokeCreatedOnEagerTensorProfiler()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc1328 ScopedPyObjectPtr result(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
2479 ScopedPyObjectPtr encoded(PyObject_CallMethodObjArgs( in CheckAndGetInteger()
/external/python/cpython3/Objects/
Dcall.c1208 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) in PyObject_CallMethodObjArgs() function
/external/python/cpython2/Objects/
Dabstract.c2729 PyObject_CallMethodObjArgs(PyObject *callable, PyObject *name, ...) function
/external/python/cpython2/Misc/
DHISTORY6384 PyObject_CallMethodObjArgs() have been added to make it more
/external/python/cpython3/Misc/
DHISTORY23763 PyObject_CallMethodObjArgs() have been added to make it more