Searched refs:class_method (Results 1 – 9 of 9) sorted by relevance
| /third_party/rust/crates/bindgen/bindgen/ir/ |
| D | objc.rs | 330 for class_method in &self.class_methods { in trace() 331 class_method.signature.trace(context, tracer, &()); in trace()
|
| /third_party/python/Lib/test/ |
| D | test_call.py | 359 def class_method(cls): member in PythonClass 386 (PythonClass.class_method, (), "classmethod"), 392 (PYTHON_INSTANCE.class_method, (), "classmethod"),
|
| D | test_inspect.py | 1445 def class_method(cls): pass member in TestIsDataDescriptor.test_functions.Test 1453 self.assertFalse(inspect.isdatadescriptor(Test().class_method),
|
| /third_party/python/Lib/ |
| D | enum.py | 329 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/ |
| D | objc.md | 36 path (e.g. `IFoo::method` or `IFoo::class_method`) as a blocklist item.
|
| /third_party/python/Lib/unittest/test/testmock/ |
| D | testpatch.py | 56 def class_method(cls): pass member in Foo 995 Foo.class_method()
|
| D | testmock.py | 1615 def class_method(cls): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
|
| /third_party/python/Doc/library/ |
| D | unittest.mock.rst | 56 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/ |
| D | mod.rs | 4293 for class_method in self.class_methods() { in codegen() 4298 .any(|x| x == class_method.rust_name()); in codegen() 4302 class_method, in codegen()
|