Searched defs:NewIterator (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.cc23 db_iterator_(db->db_->NewIterator(leveldb::ReadOptions())),
181 scoped_ptr<LevelDBWrapper::Iterator> LevelDBWrapper::NewIterator() { function in class:sync_file_system::drive_backend::LevelDBWrapper
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dtable_cache.cc82 Iterator* TableCache::NewIterator(const ReadOptions& options, function in class:leveldb::TableCache
97 Iterator* result = table->NewIterator(options);
H A Dmemtable.cc78 Iterator* MemTable::NewIterator() { function in class:leveldb::MemTable
H A Ddb_impl.cc464 Iterator* iter = mem->NewIterator();
817 Iterator* iter = table_cache_->NewIterator(ReadOptions(),
1044 list.push_back(mem_->NewIterator());
1047 list.push_back(imm_->NewIterator());
1124 Iterator* DBImpl::NewIterator(const ReadOptions& options) { function in class:leveldb::DBImpl
H A Ddb_test.cc314 Iterator* iter = db_->NewIterator(ReadOptions());
661 Iterator* iter = db_->NewIterator(ReadOptions());
677 Iterator* iter = db_->NewIterator(ReadOptions());
717 Iterator* iter = db_->NewIterator(ReadOptions());
803 Iterator* iter = db_->NewIterator(ReadOptions());
842 Iterator* iter = db_->NewIterator(ReadOptions());
1151 Iterator* iter = db_->NewIterator(ReadOptions());
1851 virtual Iterator* NewIterator(const ReadOptions& options) { function in class:leveldb::ModelDB
1947 Iterator* miter = model->NewIterator(options);
1949 Iterator* dbiter = db->NewIterator(option
[all...]
/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.cc256 Iterator* Block::NewIterator(const Comparator* cmp) { function in class:leveldb::Block
H A Dtable.cc102 Iterator* iter = meta->NewIterator(BytewiseComparator());
198 iter = block->NewIterator(table->rep_->options.comparator);
210 Iterator* Table::NewIterator(const ReadOptions& options) const { function in class:leveldb::Table
212 rep_->index_block->NewIterator(rep_->options.comparator),
220 Iterator* iiter = rep_->index_block->NewIterator(rep_->options.comparator);
250 rep_->index_block->NewIterator(rep_->options.comparator);
H A Dtable_test.cc171 virtual Iterator* NewIterator() const = 0;
209 virtual Iterator* NewIterator() const { function in class:leveldb::BlockConstructor
210 return block_->NewIterator(comparator_);
253 virtual Iterator* NewIterator() const { function in class:leveldb::TableConstructor
254 return table_->NewIterator(ReadOptions());
340 virtual Iterator* NewIterator() const { function in class:leveldb::MemTableConstructor
341 return new KeyConvertingIterator(memtable_->NewIterator());
373 virtual Iterator* NewIterator() const { function in class:leveldb::DBConstructor
374 return db_->NewIterator(ReadOptions());
489 Iterator* iter = constructor_->NewIterator();
[all...]

Completed in 159 milliseconds