Home
last modified time | relevance | path

Searched refs:Method2 (Results 1 – 25 of 409) sorted by relevance

12345678910>>...17

/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/tests/NUnitTests/
H A DMethodCall1.vb17 …Assert.AreEqual(Method1.Method2, 2, "Shared function call through return value of shared function …
21 Assert.AreEqual(Method2, 2, "Shared function call failed. (Expected 2).")
43 …Assert.AreEqual(Method6.Method2, 2, "Shared function call through return value of instance functio…
47 Assert.AreEqual(Me.Method2, 2, "Shared function call through Me failed. (Expected 2).")
54 Shared Function Method2() As Integer
H A DMethodCall3.vb17 …Assert.AreEqual(Method1().Method2(), 2, "Shared function call through return value of shared funct…
21 Assert.AreEqual(Method2(), 2, "Shared function call failed. (Expected 2).")
43 …Assert.AreEqual(Method6().Method2(), 2, "Shared function call through return value of instance fun…
47 Assert.AreEqual(Me.Method2(), 2, "Shared function call through Me failed. (Expected 2).")
54 Shared Function Method2() As Integer
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Dynamic.Runtime/tests/Dynamic.Simple/
H A DOverloadTest.cs21 public int Method2(int i) in Method2() method in SampleDynamicTests.OverloadTest
26 internal int Method2(double d) in Method2() method in SampleDynamicTests.OverloadTest
38 Assert.Equal(3, (int)d.Method2(0)); //int overload in OverloadTest_RunTest()
42 Assert.Equal(4, (int)d.Method2(0.0)); //double overload in OverloadTest_RunTest()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/runtime/logging/
H A DClassB.java28 public void Method2(); in Method2() method
35 public void Method2() { in Method2() method in ClassA
56 classBObj.Method2(); in main()
61 classAObj.Method2(); in main()
/dports/lang/mono-basic/mono-basic-4.7/vbnc/rt/source/
H A DCecilComparer.vb553 If Method1 Is Nothing AndAlso Method2 Is Nothing Then Return
565 CompareAttributes(Method1, Method2)
567 If Method1.Attributes <> Method2.Attributes Then
568 …e '(%a2%).{2}' has the attributes '{3}'", Method1, Method1.Attributes, Method2, Method2.Attributes)
576 ElseIf Method1.ImplAttributes <> Method2.ImplAttributes Then
580 If Method1.CallingConvention <> Method2.CallingConvention Then
585 …2%).{2}' has declaring type '{3}'", Method1, Method1.DeclaringType, Method2, Method2.DeclaringType)
589 …hile '(%a2%).{2}' has return type '{3}'", Method1, Method1.ReturnType, Method2, Method2.ReturnType)
593 If Method1.Parameters.Count <> Method2.Parameters.Count Then
594 … (%a2%).{2} has {3} parameters", Method1, Method1.Parameters.Count, Method2, Method2.Parameters.Co…
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/tests/
H A Ddtest-019.cs14 static void Method2 (dynamic d, int i) in Method2() method in C
18 static void Method2 (out object d) in Method2() method in C
26 D2 d2 = Method2; in Main()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/pc/
H A Dproxy_unittest.cc36 virtual std::string Method2(std::string s1, std::string s2) = 0;
58 MOCK_METHOD2(Method2, std::string(std::string, std::string));
73 PROXY_WORKER_METHOD2(std::string, Method2, std::string, std::string)
86 PROXY_METHOD2(std::string, Method2, std::string, std::string)
165 TEST_F(SignalingProxyTest, Method2) { in TEST_F() argument
168 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
173 EXPECT_EQ("Method2", fake_signaling_proxy_->Method2(arg1, arg2)); in TEST_F()
252 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
256 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2)); in TEST_F()
/dports/net-im/tg_owt/tg_owt-d578c76/src/pc/
H A Dproxy_unittest.cc36 virtual std::string Method2(std::string s1, std::string s2) = 0;
58 MOCK_METHOD(std::string, Method2, (std::string, std::string), (override));
73 PROXY_SECONDARY_METHOD2(std::string, Method2, std::string, std::string)
86 PROXY_METHOD2(std::string, Method2, std::string, std::string)
165 TEST_F(SignalingProxyTest, Method2) { in TEST_F() argument
168 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
173 EXPECT_EQ("Method2", fake_signaling_proxy_->Method2(arg1, arg2)); in TEST_F()
252 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
256 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2)); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/pc/
H A Dproxy_unittest.cc36 virtual std::string Method2(std::string s1, std::string s2) = 0;
58 MOCK_METHOD(std::string, Method2, (std::string, std::string), (override));
73 PROXY_WORKER_METHOD2(std::string, Method2, std::string, std::string)
86 PROXY_METHOD2(std::string, Method2, std::string, std::string)
165 TEST_F(SignalingProxyTest, Method2) { in TEST_F() argument
168 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
173 EXPECT_EQ("Method2", fake_signaling_proxy_->Method2(arg1, arg2)); in TEST_F()
252 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
256 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2)); in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/test/clang-tidy/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang-tools-extra/test/clang-tidy/checkers/
H A Dbugprone-argument-comment-gmock.cpp70 virtual void Method2(int p_one, int p_two) const;
75 MOCK_CONST_METHOD2(Method2, void(int c, int d));
93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations()
104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()

12345678910>>...17