/third_party/python/Objects/ |
D | classobject.c | 168 return PyObject_GetAttr(im->im_func, docstr); in method_get_doc() 201 return PyObject_GetAttr(im->im_func, name); in method_getattro() 416 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr); in instancemethod_get_doc() 446 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), name); in instancemethod_getattro()
|
D | object.c | 815 res = PyObject_GetAttr(v, w); in PyObject_GetAttrString() 872 result = PyObject_GetAttr(v, oname); in _PyObject_GetAttrId() 910 PyObject_GetAttr(PyObject *v, PyObject *name) in PyObject_GetAttr() function 1138 *method = PyObject_GetAttr(obj, name); in _PyObject_GetMethod()
|
D | unionobject.c | 440 return PyObject_GetAttr((PyObject *) Py_TYPE(alias), name); in union_getattro()
|
D | genericaliasobject.c | 433 return PyObject_GetAttr(alias->origin, name); in ga_getattro()
|
D | weakrefobject.c | 496 WRAP_BINARY(proxy_getattr, PyObject_GetAttr) in WRAP_BINARY() argument
|
D | funcobject.c | 732 PyObject *value = PyObject_GetAttr(wrapped, name); in functools_copy_attr()
|
/third_party/boost/libs/python/src/ |
D | object_protocol.cpp | 15 return object(detail::new_reference(PyObject_GetAttr(target.ptr(), key.ptr()))); in getattr() 20 PyObject* result = PyObject_GetAttr(target.ptr(), key.ptr()); in getattr()
|
/third_party/python/Modules/ |
D | xxsubtype.c | 246 res = PyObject_GetAttr(obj, name); in spam_bench()
|
D | _operator.c | 1303 newobj = PyObject_GetAttr(obj, attr_name); in dotted_getattr() 1312 newobj = PyObject_GetAttr(obj, attr); in dotted_getattr() 1567 method = PyObject_GetAttr(obj, mc->name); in methodcaller_call()
|
/third_party/markupsafe/ |
D | _speedups.c | 206 html = PyObject_GetAttr(text ,id_html); in escape()
|
/third_party/python/Modules/_ctypes/ |
D | stgdict.c | 229 fdescr = (CFieldObject *)PyObject_GetAttr(descr->proto, fname); in MakeFields() 302 CFieldObject *descr = (CFieldObject *)PyObject_GetAttr(type, fname); in MakeAnonFields()
|
/third_party/python/Include/ |
D | object.h | 274 PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
|
/third_party/python/Doc/c-api/ |
D | object.rst | 38 To get error reporting use :c:func:`PyObject_GetAttr()` instead. 53 .. c:function:: PyObject* PyObject_GetAttr(PyObject *o, PyObject *attr_name)
|
/third_party/alsa-lib/modules/mixer/simple/ |
D | python.c | 97 o = PyObject_GetAttr(obj, InternFromString(attr)); in get_C_ptr() 121 obj = PyObject_GetAttr(obj, InternFromString(attr)); in pcall()
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 469 res = PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed() 481 return PyObject_GetAttr(self->raw, _PyIO_str_closed); in buffered_closed_get() 2272 return PyObject_GetAttr((PyObject *) self->writer, _PyIO_str_closed); in bufferedrwpair_closed_get()
|
D | stringio.c | 967 return PyObject_GetAttr(self->decoder, _PyIO_str_newlines); in stringio_newlines()
|
/third_party/python/Objects/stringlib/ |
D | unicode_format.h | 151 newobj = PyObject_GetAttr(obj, str); in getattr()
|
/third_party/python/PC/ |
D | python3dll.c | 451 EXPORT_FUNC(PyObject_GetAttr)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 495 function,PyObject_GetAttr,3.2,
|
D | refcounts.dat | 1683 PyObject_GetAttr:PyObject*::+1: 1684 PyObject_GetAttr:PyObject*:o:0: 1685 PyObject_GetAttr:PyObject*:attr_name:0:
|
/third_party/python/Python/ |
D | import.c | 1820 import = PyObject_GetAttr(builtins, import_str); in PyImport_Import()
|
D | ceval.c | 991 PyObject *attr = PyObject_GetAttr(subject, name); in match_class_attr() 3592 res = PyObject_GetAttr(owner, name); in _PyEval_EvalFrameDefault() 6162 value = PyObject_GetAttr(v, name); in import_all_from()
|
D | bltinmodule.c | 1106 result = PyObject_GetAttr(v, name); in builtin_getattr()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1071 function PyObject_GetAttr
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 2300 obj = PyObject_GetAttr(pyobj,SWIG_This()); in SWIG_Python_GetSwigThis() 2310 obj = PyObject_GetAttr(pyobj,SWIG_This()); in SWIG_Python_GetSwigThis()
|