Lines Matching refs:set1
823 hash_set<string> set1;
824 set1.insert("hello");
825 EXPECT_EQ("{ \"hello\" }", Print(set1));
831 hash_multiset<int> set1(a, a + kSize);
834 const string result = Print(set1);
886 set<unsigned int> set1(a, a + 3);
887 EXPECT_EQ("{ 0, 3, 5 }", Print(set1));
892 multiset<int> set1(a, a + 5);
893 EXPECT_EQ("{ 1, 1, 1, 2, 5 }", Print(set1));