Home
last modified time | relevance | path

Searched refs:class_method (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py81 def class_method(cls): member in TestClass
276 inspect_utils.getmethodclass(TestClass.class_method),
296 inspect_utils.getmethodclass(test_obj.class_method),
388 def class_method(cls): member in InspectUtilsTest.test_getdefiningclass.Superclass
406 inspect_utils.getdefiningclass(Subclass.class_method, Subclass) is
/external/python/cpython3/Lib/test/
Dtest_call.py288 def class_method(cls): member in PythonClass
315 (PythonClass.class_method, (), "classmethod"),
321 (PYTHON_INSTANCE.class_method, (), "classmethod"),
/external/python/cpython3/Lib/
Denum.py254 class_method = getattr(enum_class, name)
257 if obj_method is not None and obj_method is class_method:
/external/python/cpython3/Doc/library/
Dunittest.mock.rst1275 >>> @patch.object(SomeClass, 'class_method')
1277 ... SomeClass.class_method(3)
1560 >>> @patch.object(SomeClass, 'class_method')
1564 ... assert SomeClass.class_method is mock2
1566 ... SomeClass.class_method('bar')
/external/clang/test/CodeGenObjC/
Darc.m69 + (void) class_method; class
75 // CHECK: define internal void @"\01+[Test2 class_method]"
81 + (void) class_method {} class