Home
last modified time | relevance | path

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

/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/python/cpython3/Lib/test/
Dtest_call.py292 def static_method(): member in PythonClass
316 (PythonClass.static_method, (), "staticmethod"),
322 (PYTHON_INSTANCE.static_method, (), "staticmethod"),
/external/tensorflow/tensorflow/python/autograph/pyct/
Dinspect_utils_test.py77 def static_method(): member in TestClass
273 inspect_utils.getmethodclass(TestClass.static_method),
293 inspect_utils.getmethodclass(test_obj.static_method),
/external/swiftshader/third_party/llvm-7.0/llvm/test/Demangle/
Dms-mangle.test67 ?static_method@foo@@SAPAV1@XZ
68 ; CHECK: static class foo * __cdecl foo::static_method(void)
70 ?static_method@foo@@SAPEAV1@XZ
71 ; CHECK: static class foo * __cdecl foo::static_method(void)
/external/python/cpython3/Doc/library/
Dunittest.mock-examples.rst385 ... @patch.object(SomeClass, 'static_method')
387 ... SomeClass.static_method()
Dunittest.mock.rst1561 ... @patch.object(SomeClass, 'static_method')
1563 ... assert SomeClass.static_method is mock1
1565 ... SomeClass.static_method('foo')