Searched refs:getattribute (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_pickle.py | 366 def getattribute(module, name): function 405 attr = getattribute(module3, name3) 408 attr = getattribute(module3, name3) 415 attr = getattribute(module3, name3) 419 self.assertEqual(getattribute(module, name), attr) 445 attr = getattribute(module3, name3)
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 6429 PyObject *getattr, *getattribute, *res; in slot_tp_getattr_hook() local 6449 getattribute = _PyType_LookupId(tp, &PyId___getattribute__); in slot_tp_getattr_hook() 6450 if (getattribute == NULL || in slot_tp_getattr_hook() 6451 (Py_TYPE(getattribute) == &PyWrapperDescr_Type && in slot_tp_getattr_hook() 6452 ((PyWrapperDescrObject *)getattribute)->d_wrapped == in slot_tp_getattr_hook() 6456 Py_INCREF(getattribute); in slot_tp_getattr_hook() 6457 res = call_attribute(self, getattribute, name); in slot_tp_getattr_hook() 6458 Py_DECREF(getattribute); in slot_tp_getattr_hook()
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 5656 PyObject *getattr, *getattribute, *res; local 5688 getattribute = _PyType_Lookup(tp, getattribute_str); 5689 if (getattribute == NULL || 5690 (Py_TYPE(getattribute) == &PyWrapperDescr_Type && 5691 ((PyWrapperDescrObject *)getattribute)->d_wrapped == 5695 Py_INCREF(getattribute); 5696 res = call_attribute(self, getattribute, name); 5697 Py_DECREF(getattribute);
|
/external/ImageMagick/PerlMagick/ |
D | MANIFEST | 50 t/getattribute.t
|
D | Magick.xs | 4625 getattribute = 5 in Get()
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2491 ... print "Metaclass getattribute invoked" 2499 ... print "Class getattribute invoked" 2504 Class getattribute invoked 2507 Metaclass getattribute invoked
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 2517 ... print("Metaclass getattribute invoked") 2524 ... print("Class getattribute invoked") 2529 Class getattribute invoked 2532 Metaclass getattribute invoked
|
/external/python/cpython3/Modules/ |
D | _pickle.c | 1705 getattribute(PyObject *obj, PyObject *name, int allow_qualname) in getattribute() function 6647 global = getattribute(module, global_name, self->proto >= 4); in _pickle_Unpickler_find_class_impl()
|
/external/ImageMagick/PerlMagick/quantum/ |
D | quantum.xs.in | 4623 getattribute = 5
|
/external/libxml2/ |
D | ChangeLog | 12230 * xmlreader.c doc/libxml2-api.xml: added the close and getattribute
|