Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/
Dproxy_unittest.cc54 virtual std::string Method2(std::string s1, std::string s2) = 0;
67 PROXY_METHOD2(std::string, Method2, std::string, std::string)
84 MOCK_METHOD2(Method2, std::string(std::string, std::string));
159 TEST_F(ProxyTest, Method2) { in TEST_F() argument
162 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F()
167 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2)); in TEST_F()
/external/libchrome/mojo/public/interfaces/bindings/tests/data/validation/
Dboundscheck_msghdr_no_such_method.data4 [u4]2 // There is no Method2
/external/libchrome/mojo/public/interfaces/bindings/tests/
Dvalidation_test_associated_interfaces.mojom15 Method2(associated InterfaceX? param0);
Dvalidation_test_interfaces.mojom83 Method2(StructB param0, StructA param1);
/external/clang/lib/Sema/
DSemaTemplateDeduction.cpp4205 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2); in isAtLeastAsSpecializedAs() local
4226 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs()
4230 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs()
4232 AddImplicitObjectParameterType(S.Context, Method2, Args2); in isAtLeastAsSpecializedAs()