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