Home
last modified time | relevance | path

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

/external/llvm-project/clang/test/CodeGenObjC/
Dsection-name.m10 + (void) class_method; class
16 + (void) class_method { class
Darc.m69 + (void) class_method; class
75 // CHECK: define internal void @"\01+[Test2 class_method]"
81 + (void) class_method {} class
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py81 def class_method(cls): member in TestClass
415 inspect_utils.getmethodclass(TestClass.class_method),
435 inspect_utils.getmethodclass(test_obj.class_method),
515 def class_method(cls): member in InspectUtilsTest.test_getdefiningclass.Superclass
533 inspect_utils.getdefiningclass(Subclass.class_method, Subclass),
/external/rust/crates/bindgen/src/ir/
Dobjc.rs316 for class_method in &self.class_methods { in trace()
317 class_method.signature.trace(context, tracer, &()); in trace()
/external/python/cpython3/Lib/test/
Dtest_call.py358 def class_method(cls): member in PythonClass
385 (PythonClass.class_method, (), "classmethod"),
391 (PYTHON_INSTANCE.class_method, (), "classmethod"),
Dtest_inspect.py1320 def class_method(cls): pass member in TestIsDataDescriptor.test_functions.Test
1328 self.assertFalse(inspect.isdatadescriptor(Test().class_method),
/external/python/enum34/enum/
D__init__.py284 class_method = getattr(enum_class, name)
287 if name not in classdict and class_method is not enum_method:
/external/python/cpython3/Lib/
Denum.py259 class_method = getattr(enum_class, name)
262 if obj_method is not None and obj_method is class_method:
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestpatch.py56 def class_method(cls): pass member in Foo
995 Foo.class_method()
Dtestmock.py1587 def class_method(cls): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
/external/python/mock/mock/tests/
Dtestpatch.py59 def class_method(cls): pass member in Foo
985 Foo.class_method()
Dtestmock.py1508 def class_method(cls): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
/external/python/cpython3/Doc/library/
Dunittest.mock.rst56 def class_method(cls, args):
1559 >>> @patch.object(SomeClass, 'class_method')
1561 ... SomeClass.class_method(3)
1876 >>> @patch.object(SomeClass, 'class_method')
1880 ... assert SomeClass.class_method is mock2
1882 ... SomeClass.class_method('bar')
/external/rust/crates/bindgen/src/codegen/
Dmod.rs3992 for class_method in self.class_methods() { in codegen()
3994 instance_method_names.contains(&class_method.rust_name()); in codegen()
3998 class_method, in codegen()
/external/clang/test/CodeGenObjC/
Darc.m69 + (void) class_method; class
75 // CHECK: define internal void @"\01+[Test2 class_method]"
81 + (void) class_method {} class