Home
last modified time | relevance | path

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

/external/cronet/base/win/
Dwmi_unittest.cc42 ComPtr<IWbemClassObject> class_method = nullptr; in TEST_F() local
44 wmi_services.Get(), L"Win32_ShortcutFile", L"Rename", &class_method)); in TEST_F()
45 ASSERT_NE(class_method.Get(), nullptr); in TEST_F()
46 ULONG refs = class_method.Reset(); in TEST_F()
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py75 def class_method(cls): member in TestClass
409 inspect_utils.getmethodclass(TestClass.class_method),
429 inspect_utils.getmethodclass(test_obj.class_method),
511 def class_method(cls): member in InspectUtilsTest.test_getdefiningclass.Superclass
529 inspect_utils.getdefiningclass(Subclass.class_method, Subclass),
/external/rust/crates/bindgen/ir/
Dobjc.rs330 for class_method in &self.class_methods { in trace()
331 class_method.signature.trace(context, tracer, &()); in trace()
/external/python/cpython3/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),
/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.py329 class_method = getattr(enum_class, name)
332 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.py1615 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):
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')
/external/clang/test/CodeGenObjC/
Darc.m69 + (void) class_method; class
75 // CHECK: define internal void @"\01+[Test2 class_method]"
81 + (void) class_method {} class
/external/rust/crates/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()