Searched refs:im_class (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Include/ |
D | classobject.h | 35 PyObject *im_class; /* The class that asked for the method */ member 74 (((PyMethodObject *)meth) -> im_class)
|
/external/tensorflow/tensorflow/python/keras/preprocessing/ |
D | image_test.py | 184 im_class = count % num_classes 186 classpaths = paths[im_class] 269 im_class = count % num_classes 271 classpaths = paths[im_class]
|
/external/tensorflow/tensorflow/python/util/ |
D | decorator_utils.py | 31 return function.im_class.__name__ + '.' + function.__name__
|
/external/python/cpython2/Lib/test/ |
D | test_funcattrs.py | 169 self.assertEqual(self.f.a.im_class, self.f) 170 self.assertEqual(self.fi.a.im_class, self.f)
|
D | test_pyclbr.py | 87 objname = "_%s%s" % (obj.im_class.__name__, objname)
|
D | test_descr.py | 4627 self.assertIs(l.__add__.im_class, list)
|
/external/python/cpython2/Objects/ |
D | classobject.c | 165 return ((PyMethodObject *)im)->im_class; in PyMethod_Class() 2271 im->im_class = klass; in PyMethod_New() 2283 {"im_class", T_OBJECT, OFF(im_class), READONLY|RESTRICTED, 2387 Py_XDECREF(im->im_class); in instancemethod_dealloc() 2419 PyObject *klass = a->im_class; in instancemethod_repr() 2498 Py_VISIT(im->im_class); in instancemethod_traverse()
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | metrics_utils.py | 132 cls = method.im_class
|
/external/python/cpython2/Lib/multiprocessing/ |
D | forking.py | 72 return getattr, (m.im_class, m.im_func.func_name)
|
/external/python/cpython2/Lib/ |
D | copy.py | 264 return type(x)(x.im_func, deepcopy(x.im_self, memo), x.im_class)
|
D | pydoc.py | 911 imclass = object.im_class 1301 imclass = object.im_class
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 57 | | im_class | class object that asked | \(1) | 222 :attr:`im_class` used to refer to the class that defined the method.
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 572 :attr:`im_func` is the function object; :attr:`im_class` is the class of 605 single: im_class (method attribute) 615 :attr:`im_class` attribute is the class from which the retrieval takes 626 single: im_class (method attribute) 636 be an instance of the proper class (:attr:`im_class`) or of a derived class 803 transformed into an unbound user-defined method object whose :attr:`im_class` 850 user-defined method object whose :attr:`im_class` attribute is :class:`C` and
|
/external/python/cpython3/Lib/test/ |
D | test_descr.py | 4372 self.assertIs(l.__add__.im_class, list)
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1266 im_class (class, R/O): class defining the method (may be a base class)
|
D | HISTORY | 1306 with im_class == im_self == NULL, which caused a crash when called.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 17122 im_class attribute is removed and im_func + im_self are renamed to 18690 with im_class == im_self == NULL, which caused a crash when called.
|