Home
last modified time | relevance | path

Searched refs:_PyObject_GetAttrId (Results 1 – 25 of 33) sorted by relevance

12

/third_party/python/Python/
Dpythonrun.c216 oenc = _PyObject_GetAttrId(v, &PyId_encoding); in PyRun_InteractiveOneObjectEx()
532 *message = _PyObject_GetAttrId(err, &PyId_msg); in parse_syntax_error()
536 v = _PyObject_GetAttrId(err, &PyId_filename); in parse_syntax_error()
550 v = _PyObject_GetAttrId(err, &PyId_lineno); in parse_syntax_error()
559 v = _PyObject_GetAttrId(err, &PyId_offset); in parse_syntax_error()
574 v = _PyObject_GetAttrId(err, &PyId_end_lineno); in parse_syntax_error()
590 v = _PyObject_GetAttrId(err, &PyId_end_offset); in parse_syntax_error()
611 v = _PyObject_GetAttrId(err, &PyId_text); in parse_syntax_error()
726 PyObject *code = _PyObject_GetAttrId(value, &PyId_code); in _Py_HandleSystemExit()
970 modulename = _PyObject_GetAttrId(type, &PyId___module__); in print_exception()
Dimport.c80 PyObject *zipimporter = _PyObject_GetAttrId(zipimport, in _PyImportZip_Init()
357 spec = _PyObject_GetAttrId(mod, &PyId___spec__); in import_ensure_initialized()
1360 PyObject *parent = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name()
1379 package = _PyObject_GetAttrId(spec, &PyId_parent); in resolve_name()
Dbltinmodule.c2130 stdin_encoding = _PyObject_GetAttrId(fin, &PyId_encoding); in builtin_input_impl()
2131 stdin_errors = _PyObject_GetAttrId(fin, &PyId_errors); in builtin_input_impl()
2151 stdout_encoding = _PyObject_GetAttrId(fout, &PyId_encoding); in builtin_input_impl()
2152 stdout_errors = _PyObject_GetAttrId(fout, &PyId_errors); in builtin_input_impl()
2349 callable = _PyObject_GetAttrId(newlist, &PyId_sort); in builtin_sorted()
D_warnings.c491 name = _PyObject_GetAttrId(category, &PyId___name__); in show_warning()
Dceval.c915 PyObject *get = _PyObject_GetAttrId(map, &PyId_get); in match_keys()
6025 pkgname = _PyObject_GetAttrId(v, &PyId___name__); in import_from()
6068 PyObject *spec = _PyObject_GetAttrId(v, &PyId___spec__); in import_from()
6127 PyObject *modname = _PyObject_GetAttrId(v, &PyId___name__); in import_all_from()
Derrors.c1328 PyObject *modulename = _PyObject_GetAttrId(exc_type, &PyId___module__); in write_unraisable_exc_file()
/third_party/python/Modules/
D_abc.c121 PyObject *impl = _PyObject_GetAttrId(self, &PyId__abc_impl); in _get_impl()
310 ns = _PyObject_GetAttrId(self, &PyId___dict__); in compute_abstract_methods()
354 bases = _PyObject_GetAttrId(self, &PyId___bases__); in compute_abstract_methods()
593 subclass = _PyObject_GetAttrId(instance, &PyId___class__); in _abc__abc_instancecheck_impl()
D_asynciomodule.c219 return _PyObject_GetAttrId(fut, &PyId__loop); in get_future_loop()
366 PyObject *callable = _PyObject_GetAttrId(loop, &PyId_call_soon); in call_soon()
1459 func = _PyObject_GetAttrId(fut->fut_loop, &PyId_call_exception_handler); in FutureObj_finalize()
2425 func = _PyObject_GetAttrId(task->task_loop, &PyId_call_exception_handler); in TaskObj_finalize()
2851 PyObject *add_cb = _PyObject_GetAttrId( in task_step_impl()
D_pickle.c3602 global_name = _PyObject_GetAttrId(obj, &PyId___name__); in save_global()
4077 cls_new = _PyObject_GetAttrId(cls, &PyId___new__); in save_reduce()
6489 append_func = _PyObject_GetAttrId(list, &PyId_append); in do_append()
6614 add_func = _PyObject_GetAttrId(set, &PyId_add); in load_additems()
6699 dict = _PyObject_GetAttrId(inst, &PyId___dict__); in load_build()
D_operator.c1680 partial = _PyObject_GetAttrId(functools, &PyId_partial); in methodcaller_reduce()
Dtimemodule.c896 func = _PyObject_GetAttrId(module, &PyId__strptime_time);
D_json.c326 PyObject *JSONDecodeError = _PyObject_GetAttrId(decoder, &PyId_JSONDecodeError); in raise_errmsg()
/third_party/python/Objects/
Dmoduleobject.c709 PyObject *value = _PyObject_GetAttrId(spec, &PyId__initializing); in _PyModuleSpec_IsInitializing()
814 PyObject *dict = _PyObject_GetAttrId(self, &PyId___dict__); in module_dir()
844 PyObject *dict = _PyObject_GetAttrId((PyObject *)m, &PyId___dict__); in module_get_annotations()
881 PyObject *dict = _PyObject_GetAttrId((PyObject *)m, &PyId___dict__); in module_set_annotations()
Dcall.c620 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId()
668 PyObject *callable = _PyObject_GetAttrId(obj, name); in _PyObject_CallMethodId_SizeT()
Dfileobject.c128 writer = _PyObject_GetAttrId(f, &PyId_write); in PyFile_WriteObject()
Dclassobject.c127 funcname = _PyObject_GetAttrId(func, &PyId___name__); in method_reduce()
Dmethodobject.c233 type_qualname = _PyObject_GetAttrId(type, &PyId___qualname__); in meth_get__qualname__()
Dtypeobject.c5199 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj__); in reduce_newobj()
5225 newobj = _PyObject_GetAttrId(copyreg, &PyId___newobj_ex__); in reduce_newobj()
5349 clsreduce = _PyObject_GetAttrId(cls, &PyId___reduce__); in object___reduce_ex___impl()
7751 func = _PyObject_GetAttrId((PyObject *)type, &PyId___new__); in slot_tp_new()
8504 PyObject *func = _PyObject_GetAttrId(super, &PyId___init_subclass__); in type_new_init_subclass()
Dodictobject.c955 dict = _PyObject_GetAttrId((PyObject *)od, &PyId___dict__); in odict_reduce()
Ddescrobject.c582 type_qualname = _PyObject_GetAttrId((PyObject *)descr->d_type, in calculate_qualname()
Dobject.c866 _PyObject_GetAttrId(PyObject *v, _Py_Identifier *name) in _PyObject_GetAttrId() function
/third_party/python/Include/cpython/
Dobject.h316 PyAPI_FUNC(PyObject *) _PyObject_GetAttrId(PyObject *, struct _Py_Identifier *);
/third_party/python/Modules/_io/
D_iomodule.c423 blksize_obj = _PyObject_GetAttrId(raw, &PyId__blksize); in _io_open_impl()
Dbufferedio.c585 return _PyObject_GetAttrId(self->raw, &PyId_name); in buffered_name_get()
592 return _PyObject_GetAttrId(self->raw, &PyId_mode); in buffered_mode_get()
2168 func = _PyObject_GetAttrId((PyObject *)self, name); in _forward_call()
/third_party/python/Modules/_ctypes/
Dcallproc.c1862 meth = _PyObject_GetAttrId(obj, &PyId___setstate__); in unpickle()

12