Home
last modified time | relevance | path

Searched refs:static_method (Results 1 – 14 of 14) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/meta/meta.unary/meta.unary.prop/
Dis_scoped_enum.pass.cpp71 static int static_method(int) { return 0; } in static_method() function
115 test_negative<decltype(TestMembers::static_method)>(); in main()
116 test_negative<decltype(&TestMembers::static_method)>(); in main()
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-methods.cpp11 static void static_method() {} in static_method() function in C
53 C::static_method(); in call_static_method()
Ddebug-info-codeview-display-name.cpp45 static foo* static_method() { return 0; } in static_method() function
53 foo::static_method(); in use_foo()
Dmangle-ms.cpp59 static foo* static_method() { return 0; } in static_method() function in foo
89 foo::static_method(); in operator +()
/external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
Dp3.cpp24 static int static_method();
27 return data_member + instance_method() < static_method(); in test()
/external/clang/test/SemaTemplate/
Dinstantiate-using-decl.cpp160 static void static_method() { in static_method() function
167 UnresolvedTemplateNames::static_method<int>(); // expected-note {{requested here}} in force_instantiation()
/external/clang/test/Analysis/
Dbug_hash_test.cpp21 static int static_method() { in static_method() function in AA::X
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py71 def static_method(): member in TestClass
406 inspect_utils.getmethodclass(TestClass.static_method),
426 inspect_utils.getmethodclass(test_obj.static_method),
/external/python/cpython3/Lib/test/
Dtest_call.py363 def static_method(): member in PythonClass
387 (PythonClass.static_method, (), "staticmethod"),
393 (PYTHON_INSTANCE.static_method, (), "staticmethod"),
Dtest_inspect.py1447 def static_method(): pass member in TestIsDataDescriptor.test_functions.Test
1455 self.assertFalse(inspect.isdatadescriptor(Test().static_method),
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestpatch.py53 def static_method(): pass member in Foo
989 Foo.static_method()
Dtestmock.py1618 def static_method(): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
/external/python/cpython3/Doc/library/
Dunittest.mock-examples.rst23 def static_method():
440 ... @patch.object(SomeClass, 'static_method')
442 ... SomeClass.static_method()
Dunittest.mock.rst52 def static_method(args):
1878 ... @patch.object(SomeClass, 'static_method')
1880 ... assert SomeClass.static_method is mock1
1882 ... SomeClass.static_method('foo')