Wrapped            99 content/browser/indexed_db/list_set_unittest.cc   explicit Wrapped(const Wrapped<T>& other) : value_(other.value_) {}
Wrapped           100 content/browser/indexed_db/list_set_unittest.cc   Wrapped& operator=(const Wrapped<T>& rhs) {
Wrapped           105 content/browser/indexed_db/list_set_unittest.cc   bool operator<(const Wrapped<T>& rhs) const { return value_ < rhs.value_; }
Wrapped           106 content/browser/indexed_db/list_set_unittest.cc   bool operator==(const Wrapped<T>& rhs) const { return value_ == rhs.value_; }
Wrapped           113 content/browser/indexed_db/list_set_unittest.cc   list_set<Wrapped<int> > set;
Wrapped           116 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int> >::iterator it = set.begin();
Wrapped           120 content/browser/indexed_db/list_set_unittest.cc   set.insert(Wrapped<int>(0));
Wrapped           121 content/browser/indexed_db/list_set_unittest.cc   set.insert(Wrapped<int>(1));
Wrapped           122 content/browser/indexed_db/list_set_unittest.cc   set.insert(Wrapped<int>(2));
Wrapped           127 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int> >::iterator it = set.begin();
Wrapped           137 content/browser/indexed_db/list_set_unittest.cc   set.erase(Wrapped<int>(0));
Wrapped           138 content/browser/indexed_db/list_set_unittest.cc   set.erase(Wrapped<int>(1));
Wrapped           139 content/browser/indexed_db/list_set_unittest.cc   set.erase(Wrapped<int>(2));
Wrapped           143 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int> >::iterator it = set.begin();
Wrapped           149 content/browser/indexed_db/list_set_unittest.cc   scoped_ptr<Wrapped<int> > w0(new Wrapped<int>(0));
Wrapped           150 content/browser/indexed_db/list_set_unittest.cc   scoped_ptr<Wrapped<int> > w1(new Wrapped<int>(1));
Wrapped           151 content/browser/indexed_db/list_set_unittest.cc   scoped_ptr<Wrapped<int> > w2(new Wrapped<int>(2));
Wrapped           153 content/browser/indexed_db/list_set_unittest.cc   list_set<Wrapped<int>*> set;
Wrapped           156 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int>*>::iterator it = set.begin();
Wrapped           167 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int>*>::iterator it = set.begin();
Wrapped           183 content/browser/indexed_db/list_set_unittest.cc     list_set<Wrapped<int>*>::iterator it = set.begin();