HomeSort by relevance Sort by last modified time
    Searched refs:NewIterator (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/third_party/leveldatabase/src/table/
block.h 25 Iterator* NewIterator(const Comparator* comparator);
table.cc 102 Iterator* iter = meta->NewIterator(BytewiseComparator());
198 iter = block->NewIterator(table->rep_->options.comparator);
210 Iterator* Table::NewIterator(const ReadOptions& options) const {
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);
table_test.cc 171 virtual Iterator* NewIterator() const = 0;
209 virtual Iterator* NewIterator() const {
210 return block_->NewIterator(comparator_);
253 virtual Iterator* NewIterator() const {
254 return table_->NewIterator(ReadOptions());
340 virtual Iterator* NewIterator() const {
341 return new KeyConvertingIterator(memtable_->NewIterator());
373 virtual Iterator* NewIterator() const {
374 return db_->NewIterator(ReadOptions());
489 Iterator* iter = constructor_->NewIterator();
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
memtable.h 51 Iterator* NewIterator();
table_cache.h 33 Iterator* NewIterator(const ReadOptions& options,
builder.cc 67 Iterator* it = table_cache->NewIterator(ReadOptions(),
table_cache.cc 82 Iterator* TableCache::NewIterator(const ReadOptions& options,
97 Iterator* result = table->NewIterator(options);
autocompact_test.cc 82 Iterator* iter = db_->NewIterator(ReadOptions());
write_batch_test.cc 22 Iterator* iter = mem->NewIterator();
db_impl.h 38 virtual Iterator* NewIterator(const ReadOptions&);
memtable.cc 78 Iterator* MemTable::NewIterator() {
  /external/chromium_org/third_party/leveldatabase/src/include/leveldb/
table.h 46 // The result of NewIterator() is initially invalid (caller must
48 Iterator* NewIterator(const ReadOptions&) const;
db.h 87 // 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/
metadata_db_migration_util_unittest.cc 29 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
37 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
metadata_database_index_on_disk.cc 155 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...]
leveldb_wrapper.h 83 scoped_ptr<Iterator> NewIterator();
metadata_db_migration_util.cc 44 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
leveldb_wrapper_unittest.cc 60 scoped_ptr<LevelDBWrapper::Iterator> itr = db_->NewIterator();
92 scoped_ptr<LevelDBWrapper::Iterator> itr = GetDB()->NewIterator();
142 scoped_ptr<LevelDBWrapper::Iterator> itr = GetDB()->NewIterator();
leveldb_wrapper.cc 23 db_iterator_(db->db_->NewIterator(leveldb::ReadOptions())),
181 scoped_ptr<LevelDBWrapper::Iterator> LevelDBWrapper::NewIterator() {
  /external/chromium_org/third_party/leveldatabase/src/issues/
issue200_test.cc 34 Iterator *iter = db->NewIterator(read_options);
issue178_test.cc 75 leveldb::Iterator* iter = db->NewIterator(leveldb::ReadOptions());
  /external/chromium_org/components/leveldb_proto/
leveldb_database.cc 84 scoped_ptr<leveldb::Iterator> db_iterator(db_->NewIterator(options));
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage.cc 287 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));
    [all...]
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.cc 273 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/
sandbox_origin_database.cc 288 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));
329 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));

Completed in 1601 milliseconds

1 2