Home | History | Annotate | Download | only in tests

Lines Matching full:list

10  *    notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in
30 #include "../include/list"
38 using std::list;
43 list<int> list1;
44 list<int*> list2;
45 list<string> list3;
46 list<B> list4;
53 list<int> l;
63 list<B> l;
76 list<int> list;
78 EXPECT_TRUE(list.size() == 0);
79 EXPECT_TRUE(list.empty());
81 list.push_front(1);
82 EXPECT_TRUE(list.size() == 1);
83 EXPECT_FALSE(list.empty());
86 list.push_front(1);
87 list.push_back(1);
89 EXPECT_TRUE(list.size() == 21);
95 list<int> l;
100 list<int>::const_iterator it = l.begin();
119 list<int> l;
125 list<int>::iterator val = l.erase(l.begin());
145 list<int> l;
155 list<int> l;