Searched refs:list_set (Results 1 - 4 of 4) sorted by last modified time

/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_database.h22 #include "content/browser/indexed_db/list_set.h"
234 typedef list_set<IndexedDBConnection*> ConnectionSet;
H A Dindexed_db_transaction_coordinator.h14 #include "content/browser/indexed_db/list_set.h"
40 typedef list_set<scoped_refptr<IndexedDBTransaction> > TransactionSet;
47 // list_set is used to provide stable ordering; required by spec
H A Dlist_set.h23 class list_set { class
25 list_set() {} function in class:list_set
26 list_set(const list_set<T>& other) : list_(other.list_), set_(other.set_) {} function in class:list_set
27 list_set& operator=(const list_set<T>& other) {
157 // Prevent instantiation of list_set<scoped_ptr<T>> as the current
161 class list_set<scoped_ptr<T> >;
H A Dlist_set_unittest.cc7 #include "content/browser/indexed_db/list_set.h"
13 list_set<int> set;
17 list_set<int>::iterator it = set.begin();
36 list_set<int> set;
40 const list_set<int>& ref = set;
42 list_set<int>::const_iterator it = ref.begin();
51 list_set<int> set;
55 list_set<int>::iterator it = set.begin();
73 list_set<int>::iterator it = set.begin();
90 list_set<in
[all...]

Completed in 180 milliseconds