HomeSort by relevance Sort by last modified time
    Searched refs:list_set (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 7 #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<int>::iterator it = set.begin()
    [all...]
indexed_db_transaction_coordinator.h 14 #include "content/browser/indexed_db/list_set.h"
47 // list_set is used to provide stable ordering; required by spec
49 list_set<IndexedDBTransaction*> queued_transactions_;
50 list_set<IndexedDBTransaction*> started_transactions_;
list_set.h 23 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) {
155 // Prevent instantiation of list_set<scoped_ptr<T>> as the current
159 class list_set<scoped_ptr<T> >;
indexed_db_transaction_coordinator.cc 71 for (list_set<IndexedDBTransaction*>::const_iterator it =
77 for (list_set<IndexedDBTransaction*>::const_iterator it =
95 list_set<IndexedDBTransaction*>::const_iterator it =
131 for (list_set<IndexedDBTransaction*>::const_iterator it =
140 for (list_set<IndexedDBTransaction*>::const_iterator it =
indexed_db_database.h 19 #include "content/browser/indexed_db/list_set.h"
252 typedef list_set<IndexedDBConnection*> ConnectionSet;

Completed in 72 milliseconds