Home
last modified time | relevance | path

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

/external/webrtc/talk/app/webrtc/
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) { in TEST_F() argument
141 EXPECT_CALL(*fake_, Method1(arg1)) in TEST_F()
146 EXPECT_EQ("Method1", fake_proxy_->Method1(arg1)); in TEST_F()
/external/clang/lib/Sema/
DSemaTemplateDeduction.cpp4212 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1); in isAtLeastAsSpecializedAs() local
4234 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs()
4236 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs()
4238 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs()