Lines Matching refs:map1
821 hash_map<int, char> map1; in TEST() local
822 map1[1] = 'a'; in TEST()
823 EXPECT_EQ("{ (1, 'a' (97, 0x61)) }", Print(map1)); in TEST()
827 hash_multimap<int, bool> map1; in TEST() local
828 map1.insert(make_pair(5, true)); in TEST()
829 map1.insert(make_pair(5, false)); in TEST()
832 const string result = Print(map1); in TEST()
889 map<int, bool> map1; in TEST() local
890 map1[1] = true; in TEST()
891 map1[5] = false; in TEST()
892 map1[3] = true; in TEST()
893 EXPECT_EQ("{ (1, true), (3, true), (5, false) }", Print(map1)); in TEST()
897 multimap<bool, int> map1; in TEST() local
904 map1.insert(pair<const bool, int>(true, 0)); in TEST()
905 map1.insert(pair<const bool, int>(true, 1)); in TEST()
906 map1.insert(pair<const bool, int>(false, 2)); in TEST()
907 EXPECT_EQ("{ (false, 2), (true, 0), (true, 1) }", Print(map1)); in TEST()