Lines Matching refs:map1
802 hash_map<int, char> map1; in TEST() local
803 map1[1] = 'a'; in TEST()
804 EXPECT_EQ("{ (1, 'a' (97, 0x61)) }", Print(map1)); in TEST()
808 hash_multimap<int, bool> map1; in TEST() local
809 map1.insert(make_pair(5, true)); in TEST()
810 map1.insert(make_pair(5, false)); in TEST()
813 const string result = Print(map1); in TEST()
870 map<int, bool> map1; in TEST() local
871 map1[1] = true; in TEST()
872 map1[5] = false; in TEST()
873 map1[3] = true; in TEST()
874 EXPECT_EQ("{ (1, true), (3, true), (5, false) }", Print(map1)); in TEST()
878 multimap<bool, int> map1; in TEST() local
885 map1.insert(pair<const bool, int>(true, 0)); in TEST()
886 map1.insert(pair<const bool, int>(true, 1)); in TEST()
887 map1.insert(pair<const bool, int>(false, 2)); in TEST()
888 EXPECT_EQ("{ (false, 2), (true, 0), (true, 1) }", Print(map1)); in TEST()