Home
last modified time | relevance | path

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

/external/webrtc/pc/
Dproxy_unittest.cc34 virtual std::string Method1(std::string s) = 0;
55 MOCK_METHOD(std::string, Method1, (std::string), (override));
71 PROXY_WORKER_METHOD1(std::string, Method1, std::string)
84 PROXY_METHOD1(std::string, Method1, std::string)
145 TEST_F(SignalingProxyTest, Method1) { in TEST_F() argument
147 EXPECT_CALL(*fake_, Method1(arg1)) in TEST_F()
152 EXPECT_EQ("Method1", fake_signaling_proxy_->Method1(arg1)); in TEST_F()
233 EXPECT_CALL(*fake_, Method1(arg1)) in TEST_F()
237 EXPECT_EQ("Method1", fake_proxy_->Method1(arg1)); in TEST_F()
/external/llvm-project/clang/lib/AST/
DASTStructuralEquivalence.cpp1268 CXXMethodDecl *Method1, in IsStructurallyEquivalent() argument
1271 Method1->getDeclKind() == Method2->getDeclKind() && in IsStructurallyEquivalent()
1272 Method1->getRefQualifier() == Method2->getRefQualifier() && in IsStructurallyEquivalent()
1273 Method1->getAccess() == Method2->getAccess() && in IsStructurallyEquivalent()
1274 Method1->getOverloadedOperator() == Method2->getOverloadedOperator() && in IsStructurallyEquivalent()
1275 Method1->isStatic() == Method2->isStatic() && in IsStructurallyEquivalent()
1276 Method1->isConst() == Method2->isConst() && in IsStructurallyEquivalent()
1277 Method1->isVolatile() == Method2->isVolatile() && in IsStructurallyEquivalent()
1278 Method1->isVirtual() == Method2->isVirtual() && in IsStructurallyEquivalent()
1279 Method1->isPure() == Method2->isPure() && in IsStructurallyEquivalent()
[all …]
/external/libchrome/mojo/public/interfaces/bindings/tests/data/validation/
Dresp_boundscheck_msghdr_no_such_method.data4 [u4]1 // name: Method1 does not have a response message.
/external/libchrome/mojo/public/interfaces/bindings/tests/
Dvalidation_test_interfaces.mojom77 Method1(uint8 param0);
82 Method1(StructA param0);
Dvalidation_test_associated_interfaces.mojom14 Method1(associated InterfaceX& param0);
/external/llvm-project/clang/lib/Sema/
DSemaTemplateDeduction.cpp5107 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1); in isAtLeastAsSpecializedAs() local
5129 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs()
5131 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs()
5133 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs()
5136 } else if (Method1 && Method2 && Reversed) { in isAtLeastAsSpecializedAs()
5139 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs()
/external/clang/lib/Sema/
DSemaTemplateDeduction.cpp4204 CXXMethodDecl *Method1 = dyn_cast<CXXMethodDecl>(FD1); in isAtLeastAsSpecializedAs() local
4226 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs()
4228 AddImplicitObjectParameterType(S.Context, Method1, Args1); in isAtLeastAsSpecializedAs()
4230 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs()