Home
last modified time | relevance | path

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

/external/llvm-project/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.cpp53 static foo* static_method() { return 0; } in static_method() function
61 foo::static_method(); in use_foo()
Dmangle-ms.cpp60 static foo* static_method() { return 0; } in static_method() function in foo
90 foo::static_method(); in operator +()
/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/llvm-project/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/llvm-project/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/llvm-project/lldb/test/Shell/SymbolFile/NativePDB/
Dast-methods.cpp14 static void static_method() {} in static_method() function
/external/clang/test/Analysis/
Dbug_hash_test.cpp21 static int static_method() { in static_method() function in AA::X
/external/llvm-project/clang/test/Analysis/
Dbug_hash_test.cpp25 static void static_method() { in static_method() function in AA::X
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py77 def static_method(): member in TestClass
412 inspect_utils.getmethodclass(TestClass.static_method),
432 inspect_utils.getmethodclass(test_obj.static_method),
/external/llvm-project/llvm/test/Demangle/
Dms-mangle.test71 ?static_method@foo@@SAPAV1@XZ
72 ; CHECK: static class foo * __cdecl foo::static_method(void)
74 ?static_method@foo@@SAPEAV1@XZ
75 ; CHECK: static class foo * __cdecl foo::static_method(void)
/external/python/cpython3/Lib/test/
Dtest_call.py362 def static_method(): member in PythonClass
386 (PythonClass.static_method, (), "staticmethod"),
392 (PYTHON_INSTANCE.static_method, (), "staticmethod"),
Dtest_inspect.py1322 def static_method(): pass member in TestIsDataDescriptor.test_functions.Test
1330 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.py1590 def static_method(): pass member in MockTest.test_create_autospec_classmethod_and_staticmethod.TestClass
/external/python/mock/mock/tests/
Dtestpatch.py56 def static_method(): pass member in Foo
979 Foo.static_method()
Dtestmock.py1511 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):
1877 ... @patch.object(SomeClass, 'static_method')
1879 ... assert SomeClass.static_method is mock1
1881 ... SomeClass.static_method('foo')