Searched refs:Method2 (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/talk/app/webrtc/ |
D | proxy_unittest.cc | 54 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/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4213 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2); in isAtLeastAsSpecializedAs() local 4234 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs() 4238 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs() 4240 AddImplicitObjectParameterType(S.Context, Method2, Args2); in isAtLeastAsSpecializedAs()
|