Home | History | Annotate | Download | only in metrics

Lines Matching defs:Iterator

81   // Iterator within the allocator for finding sample records.
82 PersistentMemoryAllocator::Iterator record_iterator_;
179 // Iterator used for fetching persistent histograms from an allocator.
181 // See PersistentMemoryAllocator::Iterator for more information.
182 class BASE_EXPORT Iterator {
184 // Constructs an iterator on a given |allocator|, starting at the beginning.
185 // The allocator must live beyond the lifetime of the iterator.
186 explicit Iterator(PersistentHistogramAllocator* allocator);
201 // The iterator used for stepping through objects in persistent memory.
203 PersistentMemoryAllocator::Iterator memory_iter_;
205 DISALLOW_COPY_AND_ASSIGN(Iterator);
304 // Gets the next histogram in persistent data based on iterator while
306 std::unique_ptr<HistogramBase> GetNextHistogramWithIgnore(Iterator* iter,
493 // iterator to continue the work.
494 Iterator import_iterator_;