Searched defs:Wrapped (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/content/browser/indexed_db/
H A Dlist_set_unittest.cc96 class Wrapped { class in namespace:content
98 explicit Wrapped(const T& value) : value_(value) {} function in class:content::Wrapped
99 explicit Wrapped(const Wrapped<T>& other) : value_(other.value_) {} function in class:content::Wrapped
100 Wrapped& operator=(const Wrapped<T>& rhs) {
105 bool operator<(const Wrapped<T>& rhs) const { return value_ < rhs.value_; }
106 bool operator==(const Wrapped<T>& rhs) const { return value_ == rhs.value_; }
113 list_set<Wrapped<int> > set;
116 list_set<Wrapped<in
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_init.c32 static struct Wrapped { struct

Completed in 83 milliseconds