Searched defs:another_map (Results 1 - 6 of 6) sorted by relevance

/external/google-breakpad/src/testing/test/
H A Dgmock-generated-matchers_test.cc1047 map<string, int> another_map; local
1048 another_map["fee"] = 1;
1049 another_map["fie"] = 2;
1050 another_map["foe"] = 3;
1051 another_map["fum"] = 4;
1052 EXPECT_THAT(another_map, Contains(pair<const string, int>(string("fee"), 1)));
1053 EXPECT_THAT(another_map, Contains(pair<const string, int>("fie", 2)));
H A Dgmock-matchers_test.cc4053 map<string, int> another_map; local
4054 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
4055 another_map["fee"] = 1;
4056 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
4057 another_map["fie"] = 2;
4058 another_map["foe"] = 3;
4059 another_map["fum"] = 4;
4060 EXPECT_THAT(another_map, Not(Each(make_pair(string("fee"), 1))));
4061 EXPECT_THAT(another_map, Not(Each(make_pair(string("fum"), 1))));
4062 EXPECT_THAT(another_map, Eac
[all...]
/external/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc1192 map<string, int> another_map; local
1193 another_map["fee"] = 1;
1194 another_map["fie"] = 2;
1195 another_map["foe"] = 3;
1196 another_map["fum"] = 4;
1197 EXPECT_THAT(another_map, Contains(pair<const string, int>(string("fee"), 1)));
1198 EXPECT_THAT(another_map, Contains(pair<const string, int>("fie", 2)));
H A Dgmock-matchers_test.cc5380 map<string, int> another_map; local
5381 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5382 another_map["fee"] = 1;
5383 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5384 another_map["fie"] = 2;
5385 another_map["foe"] = 3;
5386 another_map["fum"] = 4;
5387 EXPECT_THAT(another_map, Not(Each(make_pair(string("fee"), 1))));
5388 EXPECT_THAT(another_map, Not(Each(make_pair(string("fum"), 1))));
5389 EXPECT_THAT(another_map, Eac
[all...]
/external/v8/testing/gmock/test/
H A Dgmock-generated-matchers_test.cc1192 map<string, int> another_map; local
1193 another_map["fee"] = 1;
1194 another_map["fie"] = 2;
1195 another_map["foe"] = 3;
1196 another_map["fum"] = 4;
1197 EXPECT_THAT(another_map, Contains(pair<const string, int>(string("fee"), 1)));
1198 EXPECT_THAT(another_map, Contains(pair<const string, int>("fie", 2)));
H A Dgmock-matchers_test.cc5378 map<string, int> another_map; local
5379 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5380 another_map["fee"] = 1;
5381 EXPECT_THAT(another_map, Each(make_pair(string("fee"), 1)));
5382 another_map["fie"] = 2;
5383 another_map["foe"] = 3;
5384 another_map["fum"] = 4;
5385 EXPECT_THAT(another_map, Not(Each(make_pair(string("fee"), 1))));
5386 EXPECT_THAT(another_map, Not(Each(make_pair(string("fum"), 1))));
5387 EXPECT_THAT(another_map, Eac
[all...]

Completed in 265 milliseconds