Searched refs:NewIterator (Results 1 - 25 of 46) sorted by relevance

12

/external/chromium_org/third_party/leveldatabase/src/table/
H A Dblock.h25 Iterator* NewIterator(const Comparator* comparator);
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...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dtable_cache.h33 Iterator* NewIterator(const ReadOptions& options,
H A Dbuilder.cc67 Iterator* it = table_cache->NewIterator(ReadOptions(),
H A Dmemtable.h51 Iterator* NewIterator();
H A Dtable_cache.cc82 Iterator* TableCache::NewIterator(const ReadOptions& options, function in class:leveldb::TableCache
97 Iterator* result = table->NewIterator(options);
H A Dautocompact_test.cc82 Iterator* iter = db_->NewIterator(ReadOptions());
H A Dwrite_batch_test.cc22 Iterator* iter = mem->NewIterator();
H A Ddb_impl.h38 virtual Iterator* NewIterator(const ReadOptions&);
H A Dmemtable.cc78 Iterator* MemTable::NewIterator() { function in class:leveldb::MemTable
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dtable.h46 // The result of NewIterator() is initially invalid (caller must
48 Iterator* NewIterator(const ReadOptions&) const;
H A Ddb.h87 // The result of NewIterator() is initially invalid (caller must
92 virtual Iterator* NewIterator(const ReadOptions& options) = 0;
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_db_migration_util_unittest.cc29 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
37 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
H A Dmetadata_database_index_on_disk.cc155 scoped_ptr<LevelDBWrapper::Iterator> itr = db->NewIterator();
208 scoped_ptr<LevelDBWrapper::Iterator> itr = db->NewIterator();
230 scoped_ptr<LevelDBWrapper::Iterator> itr = db->NewIterator();
432 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
451 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
465 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
485 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
522 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
542 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
567 scoped_ptr<LevelDBWrapper::Iterator> itr(db_->NewIterator());
[all...]
H A Dmetadata_db_migration_util.cc44 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
H A Dleveldb_wrapper.h83 scoped_ptr<Iterator> NewIterator();
H A Dleveldb_wrapper_unittest.cc60 scoped_ptr<LevelDBWrapper::Iterator> itr = db_->NewIterator();
92 scoped_ptr<LevelDBWrapper::Iterator> itr = GetDB()->NewIterator();
142 scoped_ptr<LevelDBWrapper::Iterator> itr = GetDB()->NewIterator();
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/issues/
H A Dissue200_test.cc34 Iterator *iter = db->NewIterator(read_options);
H A Dissue178_test.cc75 leveldb::Iterator* iter = db->NewIterator(leveldb::ReadOptions());
/external/chromium_org/components/leveldb_proto/
H A Dleveldb_database.cc84 scoped_ptr<leveldb::Iterator> db_iterator(db_->NewIterator(options));
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata_storage.cc287 resource_map->NewIterator(leveldb::ReadOptions()));
314 scoped_ptr<leveldb::Iterator> it(resource_map->NewIterator(options));
365 scoped_ptr<leveldb::Iterator> it(resource_map->NewIterator(options));
434 scoped_ptr<leveldb::Iterator> it(resource_map->NewIterator(options));
670 resource_map->NewIterator(leveldb::ReadOptions()));
814 resource_map_->NewIterator(leveldb::ReadOptions()));
841 resource_map_->NewIterator(leveldb::ReadOptions()));
929 scoped_ptr<leveldb::Iterator> it(resource_map_->NewIterator(options));
/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_database.cc273 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(options));
444 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(leveldb::ReadOptions()));
497 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(leveldb::ReadOptions()));
556 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(options));
/external/chromium_org/storage/browser/fileapi/
H A Dsandbox_origin_database.cc288 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));
329 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));

Completed in 442 milliseconds

12