HomeSort by relevance Sort by last modified time
    Searched refs:NewIterator (Results 1 - 25 of 39) 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 76 Iterator* TableCache::NewIterator(const ReadOptions& options,
91 Iterator* result = table->NewIterator(options);
write_batch_test.cc 22 Iterator* iter = mem->NewIterator();
db_impl.h 38 virtual Iterator* NewIterator(const ReadOptions&);
memtable.cc 78 Iterator* MemTable::NewIterator() {
repair.cc 226 Iterator* iter = mem->NewIterator();
267 Iterator* iter = table_cache_->NewIterator(
leveldb_main.cc 148 Iterator* iter = table->NewIterator(ro);
  /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/third_party/leveldatabase/src/issues/
issue178_test.cc 75 leveldb::Iterator* iter = db->NewIterator(leveldb::ReadOptions());
  /external/chromium_org/chrome/browser/performance_monitor/
database.cc 134 scoped_ptr<leveldb::Iterator> it(active_interval_db_->NewIterator(
168 scoped_ptr<leveldb::Iterator> it(event_db_->NewIterator(read_options_));
200 scoped_ptr<leveldb::Iterator> it(event_db_->NewIterator(read_options_));
271 recent_db_->NewIterator(read_options_));
292 metric_db_->NewIterator(read_options_));
316 scoped_ptr<leveldb::Iterator> it(recent_db_->NewIterator(read_options_));
367 scoped_ptr<leveldb::Iterator> it(metric_db_->NewIterator(read_options_));
401 scoped_ptr<leveldb::Iterator> it(metric_db_->NewIterator(read_options_));
551 scoped_ptr<leveldb::Iterator> it(recent_db_->NewIterator(read_options_));
563 scoped_ptr<leveldb::Iterator> it(max_value_db_->NewIterator(read_options_))
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util.cc 144 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
203 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
metadata_db_migration_util_unittest.cc 149 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
262 scoped_ptr<leveldb::Iterator> itr(db->NewIterator(leveldb::ReadOptions()));
  /external/chromium_org/chrome/browser/chromeos/drive/
file_cache_metadata.cc 180 scoped_ptr<leveldb::Iterator> iter(level_db_->NewIterator(
resource_metadata_storage.cc 420 resource_map_->NewIterator(leveldb::ReadOptions()));
443 resource_map_->NewIterator(leveldb::ReadOptions()));
499 resource_map_->NewIterator(leveldb::ReadOptions()));
557 scoped_ptr<leveldb::Iterator> it(resource_map_->NewIterator(options));
  /external/chromium_org/content/browser/dom_storage/
session_storage_database.cc 224 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(options));
396 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(leveldb::ReadOptions()));
449 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(leveldb::ReadOptions()));
508 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(options));
  /external/chromium_org/chrome/browser/chromeos/contacts/
contact_database.cc 237 scoped_ptr<leveldb::Iterator> db_iterator(db_->NewIterator(options));
309 scoped_ptr<leveldb::Iterator> db_iterator(db_->NewIterator(options));
  /external/chromium_org/webkit/browser/fileapi/
sandbox_origin_database.cc 282 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));
323 scoped_ptr<leveldb::Iterator> iter(db_->NewIterator(leveldb::ReadOptions()));
  /external/chromium_org/chrome/browser/value_store/
leveldb_value_store.cc 184 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(options));
305 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(read_options));
428 scoped_ptr<leveldb::Iterator> it(db_->NewIterator(leveldb::ReadOptions()));
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv_test.cc 205 Iterator* iterator = db->NewIterator(ReadOptions());

Completed in 219 milliseconds

1 2