HomeSort by relevance Sort by last modified time
    Searched defs:NewIterator (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/leveldatabase/src/db/
table_cache.cc 82 Iterator* TableCache::NewIterator(const ReadOptions& options,
97 Iterator* result = table->NewIterator(options);
memtable.cc 78 Iterator* MemTable::NewIterator() {
db_impl.cc 464 Iterator* iter = mem->NewIterator();
817 Iterator* iter = table_cache_->NewIterator(ReadOptions(),
1044 list.push_back(mem_->NewIterator());
1047 list.push_back(imm_->NewIterator());
    [all...]
db_test.cc 314 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());
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
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/table/
block.cc 256 Iterator* Block::NewIterator(const Comparator* cmp) {
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...]

Completed in 91 milliseconds