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