Home
last modified time | relevance | path

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

/third_party/rust/crates/bindgen/bindgen/ir/
Dobjc.rs330 for class_method in &self.class_methods { in trace()
331 class_method.signature.trace(context, tracer, &()); in trace()
/third_party/python/Lib/test/
Dtest_call.py359 def class_method(cls): member in PythonClass
386 (PythonClass.class_method, (), "classmethod"),
392 (PYTHON_INSTANCE.class_method, (), "classmethod"),
Dtest_inspect.py1445 def class_method(cls): pass member in TestIsDataDescriptor.test_functions.Test
1453 self.assertFalse(inspect.isdatadescriptor(Test().class_method),
/third_party/python/Lib/
Denum.py329 class_method = getattr(enum_class, name)
332 if obj_method is not None and obj_method is class_method:
/third_party/rust/crates/bindgen/book/src/
Dobjc.md36 path (e.g. `IFoo::method` or `IFoo::class_method`) as a blocklist item.
/third_party/python/Lib/unittest/test/testmock/
Dtestpatch.py56 def class_method(cls): pass member in Foo
995 Foo.class_method()
Dtestmock.py1615 def class_method(cls): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
/third_party/python/Doc/library/
Dunittest.mock.rst56 def class_method(cls, args):
1560 >>> @patch.object(SomeClass, 'class_method')
1562 ... SomeClass.class_method(3)
1877 >>> @patch.object(SomeClass, 'class_method')
1881 ... assert SomeClass.class_method is mock2
1883 ... SomeClass.class_method('bar')
/third_party/rust/crates/bindgen/bindgen/codegen/
Dmod.rs4293 for class_method in self.class_methods() { in codegen()
4298 .any(|x| x == class_method.rust_name()); in codegen()
4302 class_method, in codegen()