/external/python/cpython3/Modules/ |
D | _abc.c | 119 PyObject *impl = _PyObject_GetAttrId(self, &PyId__abc_impl); in _get_impl() 308 ns = _PyObject_GetAttrId(self, &PyId___dict__); in compute_abstract_methods() 352 bases = _PyObject_GetAttrId(self, &PyId___bases__); in compute_abstract_methods() 527 subclass = _PyObject_GetAttrId(instance, &PyId___class__); in _abc__abc_instancecheck_impl()
|
D | parsermodule.c | 1204 func = _PyObject_GetAttrId(copyreg, &PyId_pickle); in PyInit_parser() 1205 pickle_constructor = _PyObject_GetAttrId(module, &PyId_sequence2st); in PyInit_parser() 1206 pickler = _PyObject_GetAttrId(module, &PyId__pickler); in PyInit_parser()
|
D | _asynciomodule.c | 225 return _PyObject_GetAttrId(fut, &PyId__loop); in get_future_loop() 365 PyObject *callable = _PyObject_GetAttrId(loop, &PyId_call_soon); in call_soon() 1457 func = _PyObject_GetAttrId(fut->fut_loop, &PyId_call_exception_handler); in FutureObj_finalize() 2467 func = _PyObject_GetAttrId(task->task_loop, &PyId_call_exception_handler); in TaskObj_finalize() 2882 PyObject *add_cb = _PyObject_GetAttrId( in task_step_impl()
|
D | _pickle.c | 3606 global_name = _PyObject_GetAttrId(obj, &PyId___name__); in save_global() 4081 cls_new = _PyObject_GetAttrId(cls, &PyId___new__); in save_reduce() 6536 append_func = _PyObject_GetAttrId(list, &PyId_append); in do_append() 6661 add_func = _PyObject_GetAttrId(set, &PyId_add); in load_additems() 6746 dict = _PyObject_GetAttrId(inst, &PyId___dict__); in load_build()
|
D | _operator.c | 1680 partial = _PyObject_GetAttrId(functools, &PyId_partial); in methodcaller_reduce()
|
D | timemodule.c | 891 func = _PyObject_GetAttrId(module, &PyId__strptime_time);
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 201 oenc = _PyObject_GetAttrId(v, &PyId_encoding); in PyRun_InteractiveOneObjectEx() 495 *message = _PyObject_GetAttrId(err, &PyId_msg); in parse_syntax_error() 499 v = _PyObject_GetAttrId(err, &PyId_filename); in parse_syntax_error() 513 v = _PyObject_GetAttrId(err, &PyId_lineno); in parse_syntax_error() 522 v = _PyObject_GetAttrId(err, &PyId_offset); in parse_syntax_error() 536 v = _PyObject_GetAttrId(err, &PyId_text); in parse_syntax_error() 647 PyObject *code = _PyObject_GetAttrId(value, &PyId_code); in _Py_HandleSystemExit() 880 moduleName = _PyObject_GetAttrId(type, &PyId___module__); in print_exception()
|
D | bltinmodule.c | 2012 stdin_encoding = _PyObject_GetAttrId(fin, &PyId_encoding); in builtin_input_impl() 2013 stdin_errors = _PyObject_GetAttrId(fin, &PyId_errors); in builtin_input_impl() 2033 stdout_encoding = _PyObject_GetAttrId(fout, &PyId_encoding); in builtin_input_impl() 2034 stdout_errors = _PyObject_GetAttrId(fout, &PyId_errors); in builtin_input_impl() 2231 callable = _PyObject_GetAttrId(newlist, &PyId_sort); in builtin_sorted()
|
D | import.c | 118 PyObject *zipimporter = _PyObject_GetAttrId(zipimport, in _PyImportZip_Init() 396 spec = _PyObject_GetAttrId(mod, &PyId___spec__); in import_ensure_initialized() 1614 PyObject *parent = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name() 1633 package = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name()
|
D | _warnings.c | 497 name = _PyObject_GetAttrId(category, &PyId___name__); in show_warning()
|
D | errors.c | 1306 PyObject *moduleName = _PyObject_GetAttrId(exc_type, &PyId___module__); in write_unraisable_exc_file()
|
D | pylifecycle.c | 1814 raw = _PyObject_GetAttrId(buf, &PyId_raw); in create_stdio()
|
/external/python/cpython3/Objects/ |
D | moduleobject.c | 700 PyObject *value = _PyObject_GetAttrId(spec, &PyId__initializing); in _PyModuleSpec_IsInitializing() 797 PyObject *dict = _PyObject_GetAttrId(self, &PyId___dict__); in module_dir()
|
D | fileobject.c | 128 writer = _PyObject_GetAttrId(f, &PyId_write); in PyFile_WriteObject()
|
D | call.c | 677 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId() 725 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId_SizeT()
|
D | classobject.c | 127 funcname = _PyObject_GetAttrId(func, &PyId___name__); in method_reduce()
|
D | methodobject.c | 229 type_qualname = _PyObject_GetAttrId(type, &PyId___qualname__); in meth_get__qualname__()
|
D | typeobject.c | 4617 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj__); in reduce_newobj() 4643 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj_ex__); in reduce_newobj() 4764 clsreduce = _PyObject_GetAttrId(cls, &PyId___reduce__); in object___reduce_ex___impl() 6968 func = _PyObject_GetAttrId((PyObject *)type, &PyId___new__); in slot_tp_new() 7707 func = _PyObject_GetAttrId(super, &PyId___init_subclass__); in init_subclass()
|
D | odictobject.c | 955 dict = _PyObject_GetAttrId((PyObject *)od, &PyId___dict__); in odict_reduce()
|
D | object.c | 846 _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) in _PyObject_GetAttrId() function
|
D | descrobject.c | 584 type_qualname = _PyObject_GetAttrId((PyObject *)descr->d_type, in calculate_qualname()
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 315 PyAPI_FUNC(PyObject *) _PyObject_GetAttrId(PyObject *, struct _Py_Identifier *);
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 421 blksize_obj = _PyObject_GetAttrId(raw, &PyId__blksize); in _io_open_impl()
|
D | bufferedio.c | 583 return _PyObject_GetAttrId(self->raw, &PyId_name); in buffered_name_get() 590 return _PyObject_GetAttrId(self->raw, &PyId_mode); in buffered_mode_get() 2157 func = _PyObject_GetAttrId((PyObject *)self, name); in _forward_call()
|
/external/python/cpython3/Modules/_ctypes/ |
D | callproc.c | 1856 meth = _PyObject_GetAttrId(obj, &PyId___setstate__); in unpickle()
|