Searched refs:Method2 (Results 1 – 9 of 9) sorted by relevance
/external/webrtc/pc/ |
D | proxy_unittest.cc | 36 virtual std::string Method2(std::string s1, std::string s2) = 0; 58 MOCK_METHOD(std::string, Method2, (std::string, std::string), (override)); 73 PROXY_WORKER_METHOD2(std::string, Method2, std::string, std::string) 86 PROXY_METHOD2(std::string, Method2, std::string, std::string) 165 TEST_F(SignalingProxyTest, Method2) { in TEST_F() argument 168 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F() 173 EXPECT_EQ("Method2", fake_signaling_proxy_->Method2(arg1, arg2)); in TEST_F() 252 EXPECT_CALL(*fake_, Method2(arg1, arg2)) in TEST_F() 256 EXPECT_EQ("Method2", fake_proxy_->Method2(arg1, arg2)); in TEST_F()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-argument-comment-gmock.cpp | 70 virtual void Method2(int p_one, int p_two) const; 75 MOCK_CONST_METHOD2(Method2, void(int c, int d)); 93 EXPECT_CALL(m, Method2(/*p_on=*/3, /*p_two=*/4)); in test_gmock_expectations() 104 EXPECT_CALL(m, Method2(/*p_on1=*/PARAM1, /*p_tw2=*/PARAM2)); in test_gmock_expectations()
|
D | readability-named-parameter.cpp | 6 void Method2(char *) {} in Method2() function
|
/external/llvm-project/clang/lib/AST/ |
D | ASTStructuralEquivalence.cpp | 1269 CXXMethodDecl *Method2) { 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/ |
D | boundscheck_msghdr_no_such_method.data | 4 [u4]2 // There is no Method2
|
/external/libchrome/mojo/public/interfaces/bindings/tests/ |
D | validation_test_associated_interfaces.mojom | 15 Method2(associated InterfaceX? param0);
|
D | validation_test_interfaces.mojom | 83 Method2(StructB param0, StructA param1);
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 5108 CXXMethodDecl *Method2 = dyn_cast<CXXMethodDecl>(FD2); in isAtLeastAsSpecializedAs() local 5129 if (!Method2 && Method1 && !Method1->isStatic()) { in isAtLeastAsSpecializedAs() 5133 } else if (!Method1 && Method2 && !Method2->isStatic()) { in isAtLeastAsSpecializedAs() 5135 AddImplicitObjectParameterType(S.Context, Method2, Args2); in isAtLeastAsSpecializedAs() 5136 } else if (Method1 && Method2 && Reversed) { in isAtLeastAsSpecializedAs() 5140 AddImplicitObjectParameterType(S.Context, Method2, Args2); in isAtLeastAsSpecializedAs()
|
/external/clang/lib/Sema/ |
D | SemaTemplateDeduction.cpp | 4205 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()
|