/third_party/python/Modules/_io/ |
D | textio.c | 868 res = _PyObject_CallMethodIdNoArgs(self->buffer, &PyId_readable); in _textiowrapper_set_decoder() 923 res = _PyObject_CallMethodIdNoArgs(self->buffer, &PyId_writable); in _textiowrapper_set_encoder() 1145 fileno = _PyObject_CallMethodIdNoArgs(buffer, &PyId_fileno); in _io_TextIOWrapper___init___impl() 1242 res = _PyObject_CallMethodIdNoArgs(buffer, &PyId_seekable); in _io_TextIOWrapper___init___impl() 1743 ret = _PyObject_CallMethodIdNoArgs(self->decoder, &PyId_reset); in _io_TextIOWrapper_write_impl() 1947 PyObject *bytes = _PyObject_CallMethodIdNoArgs(self->buffer, &PyId_read); in _io_TextIOWrapper_read_impl() 2490 cookieObj = _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_tell); in _io_TextIOWrapper_seek_impl() 2506 res = _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_flush); in _io_TextIOWrapper_seek_impl() 2514 res = _PyObject_CallMethodIdNoArgs(self->decoder, &PyId_reset); in _io_TextIOWrapper_seek_impl() 2676 res = _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_flush); in _io_TextIOWrapper_tell_impl() [all …]
|
D | _iomodule.c | 405 PyObject *res = _PyObject_CallMethodIdNoArgs(raw, &PyId_isatty); in _io_open_impl() 499 close_result = _PyObject_CallMethodIdNoArgs(result, &PyId_close); in _io_open_impl()
|
D | iobase.c | 924 return _PyObject_CallMethodIdNoArgs(self, &PyId_readall); in _io__RawIOBase_read_impl()
|
/third_party/python/Python/ |
D | pylifecycle.c | 1420 if (_PyObject_CallMethodIdNoArgs(modules, &PyId_clear) == NULL) { in finalize_clear_modules_dict() 1597 tmp = _PyObject_CallMethodIdNoArgs(fout, &PyId_flush); in flush_std_files() 1607 tmp = _PyObject_CallMethodIdNoArgs(ferr, &PyId_flush); in flush_std_files() 2197 res = _PyObject_CallMethodIdNoArgs(raw, &PyId_isatty); in create_stdio() 2468 res = _PyObject_CallMethodIdNoArgs(ferr, &PyId_flush); in _Py_FatalError_PrintExc() 2820 result = _PyObject_CallMethodIdNoArgs(threading, &PyId__shutdown); in wait_for_thread_shutdown()
|
D | bltinmodule.c | 2014 PyObject *tmp = _PyObject_CallMethodIdNoArgs(file, &PyId_flush); in builtin_print() 2082 tmp = _PyObject_CallMethodIdNoArgs(ferr, &PyId_flush); in builtin_input_impl() 2091 tmp = _PyObject_CallMethodIdNoArgs(fin, &PyId_fileno); in builtin_input_impl() 2104 tmp = _PyObject_CallMethodIdNoArgs(fout, &PyId_fileno); in builtin_input_impl() 2142 tmp = _PyObject_CallMethodIdNoArgs(fout, &PyId_flush); in builtin_input_impl() 2237 tmp = _PyObject_CallMethodIdNoArgs(fout, &PyId_flush); in builtin_input_impl()
|
D | traceback.c | 433 res = _PyObject_CallMethodIdNoArgs(binary, &PyId_close); in _Py_DisplaySourceLine() 453 res = _PyObject_CallMethodIdNoArgs(fob, &PyId_close); in _Py_DisplaySourceLine()
|
D | pythonrun.c | 1136 PyObject *res = _PyObject_CallMethodIdNoArgs(file, &PyId_flush); in _PyErr_Display() 1247 r = _PyObject_CallMethodIdNoArgs(f, &PyId_flush); in flush_io() 1255 r = _PyObject_CallMethodIdNoArgs(f, &PyId_flush); in flush_io()
|
D | errors.c | 1385 PyObject *res = _PyObject_CallMethodIdNoArgs(file, &PyId_flush); in write_unraisable_exc_file()
|
/third_party/python/Objects/ |
D | descrobject.c | 1099 return _PyObject_CallMethodIdNoArgs(pp->mapping, &PyId_keys); in mappingproxy_keys() 1106 return _PyObject_CallMethodIdNoArgs(pp->mapping, &PyId_values); in mappingproxy_values() 1113 return _PyObject_CallMethodIdNoArgs(pp->mapping, &PyId_items); in mappingproxy_items() 1120 return _PyObject_CallMethodIdNoArgs(pp->mapping, &PyId_copy); in mappingproxy_copy() 1127 return _PyObject_CallMethodIdNoArgs(pp->mapping, &PyId___reversed__); in mappingproxy_reversed()
|
D | fileobject.c | 65 result = _PyObject_CallMethodIdNoArgs(f, &PyId_readline); in PyFile_GetLine()
|
D | odictobject.c | 974 items = _PyObject_CallMethodIdNoArgs((PyObject *)od, &PyId_items); in odict_reduce() 1473 PyObject *items = _PyObject_CallMethodIdNoArgs((PyObject *)self, in odict_repr()
|
D | weakrefobject.c | 488 PyObject* res = _PyObject_CallMethodIdNoArgs(proxy, &PyId_##special); \
|
/third_party/python/Modules/ |
D | faulthandler.c | 178 result = _PyObject_CallMethodIdNoArgs(file, &PyId_fileno); in faulthandler_get_fileno() 196 result = _PyObject_CallMethodIdNoArgs(file, &PyId_flush); in faulthandler_get_fileno() 1336 PyObject *res = _PyObject_CallMethodIdNoArgs(module, &PyId_enable); in faulthandler_init_enable()
|
D | _dbmmodule.c | 394 return _PyObject_CallMethodIdNoArgs(self, &PyId_close); in dbm__exit__()
|
D | _gdbmmodule.c | 547 return _PyObject_CallMethodIdNoArgs(self, &PyId_close); in gdbm__exit__()
|
D | _asynciomodule.c | 346 loop = _PyObject_CallMethodIdNoArgs(policy, &PyId_get_event_loop); in get_event_loop() 509 res = _PyObject_CallMethodIdNoArgs(fut->fut_loop, &PyId_get_debug); in future_init() 1395 PyObject *rinfo = _PyObject_CallMethodIdNoArgs((PyObject*)fut, in FutureObj_repr()
|
D | _datetimemodule.c | 1659 result = _PyObject_CallMethodIdNoArgs(time, &PyId_time); in time_time() 1917 ratio = _PyObject_CallMethodIdNoArgs(floatobj, &PyId_as_integer_ratio); in get_float_as_integer_ratio() 3159 return _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_isoformat); in date_str() 3185 tuple = _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_timetuple); in date_strftime() 4304 return _PyObject_CallMethodIdNoArgs((PyObject *)self, &PyId_isoformat); in time_str()
|
D | ossaudiodev.c | 540 PyObject *ret = _PyObject_CallMethodIdNoArgs(self, &PyId_close); in oss_exit()
|
D | _threadmodule.c | 1457 PyObject *res = _PyObject_CallMethodIdNoArgs(file, &PyId_flush); in thread_excepthook_file()
|
D | mmapmodule.c | 719 return _PyObject_CallMethodIdNoArgs(self, &PyId_close); in mmap__exit__method()
|
D | _collectionsmodule.c | 2074 items = _PyObject_CallMethodIdNoArgs((PyObject *)dd, &PyId_items); in defdict_reduce()
|
/third_party/python/Modules/_sqlite/ |
D | connection.c | 782 function_result = _PyObject_CallMethodIdNoArgs(*aggregate_instance, &PyId_finalize); in _pysqlite_final_callback() 1428 cursor = _PyObject_CallMethodIdNoArgs((PyObject*)self, &PyId_cursor); in pysqlite_connection_execute_impl() 1463 cursor = _PyObject_CallMethodIdNoArgs((PyObject*)self, &PyId_cursor); in pysqlite_connection_executemany_impl() 1498 cursor = _PyObject_CallMethodIdNoArgs((PyObject*)self, &PyId_cursor); in pysqlite_connection_executescript()
|
D | module.c | 199 name = _PyObject_CallMethodIdNoArgs(orig_name, &PyId_upper); in pysqlite_register_converter_impl()
|
D | cursor.c | 141 upcase_key = _PyObject_CallMethodIdNoArgs(key, &PyId_upper); in _pysqlite_get_converter() 718 result = _PyObject_CallMethodIdNoArgs((PyObject *)self->connection, &PyId_commit); in pysqlite_cursor_executescript()
|
/third_party/python/Include/cpython/ |
D | abstract.h | 237 _PyObject_CallMethodIdNoArgs(PyObject *self, _Py_Identifier *name) in _PyObject_CallMethodIdNoArgs() function
|