Home
last modified time | relevance | path

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

/third_party/googletest/googlemock/test/
Dgmock-function-mocker_test.cc104 virtual int TypeWithComma(const std::map<int, std::string>& a_map) = 0;
394 const std::map<int, std::string> a_map; in TYPED_TEST() local
395 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma()).WillOnce(Return(a_map)); in TYPED_TEST()
396 EXPECT_CALL(this->mock_foo_, ReturnTypeWithComma(42)).WillOnce(Return(a_map)); in TYPED_TEST()
398 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma()); in TYPED_TEST()
399 EXPECT_EQ(a_map, this->mock_foo_.ReturnTypeWithComma(42)); in TYPED_TEST()
447 const std::map<int, std::string> a_map; in TYPED_TEST() local
448 EXPECT_CALL(this->mock_foo_, CTReturnTypeWithComma()).WillOnce(Return(a_map)); in TYPED_TEST()
450 EXPECT_EQ(a_map, this->mock_foo_.CTReturnTypeWithComma()); in TYPED_TEST()
614 const std::map<int, int> a_map; in TYPED_TEST() local
[all …]
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/testing/
Dencodable_value_utils.cc53 const auto& a_map = a.MapValue(); in EncodableValuesAreEqual() local
55 if (a_map.size() != b_map.size()) { in EncodableValuesAreEqual()
65 for (const auto& pair : a_map) { in EncodableValuesAreEqual()