Searched refs:Method1 (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/talk/app/webrtc/
H A Dproxy_unittest.cc52 virtual std::string Method1(std::string s) = 0;
65 PROXY_METHOD1(std::string, Method1, std::string)
81 MOCK_METHOD1(Method1, std::string(std::string));
139 TEST_F(ProxyTest, Method1) {
141 EXPECT_CALL(*fake_, Method1(arg1))
145 Return("Method1")));
146 EXPECT_EQ("Method1", fake_proxy_->Method1(arg1));
/external/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp4204 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1); local
4226 if (!Method2 && Method1 && !Method1->isStatic()) {
4227 // Compare 'this' from Method1 against first parameter from Method2.
4228 AddImplicitObjectParameterType(S.Context, Method1, Args1);
4230 } else if (!Method1 && Method2 && !Method2->isStatic()) {
4231 // Compare 'this' from Method2 against first parameter from Method1.

Completed in 108 milliseconds