Searched defs:iterator (Results 76 - 79 of 79) sorted by last modified time

1234

/frameworks/av/include/media/nbaio/
H A DNBLog.h72 class iterator;
74 explicit FormatEntry(const iterator &it);
89 // entry iterator
90 class iterator { class in class:android::NBLog::FormatEntry
92 iterator();
93 iterator(const uint8_t *entry);
94 iterator(const iterator &other);
100 iterator& operator++(); // ++i
102 iterator
[all...]
/frameworks/av/media/libmedia/include/media/
H A DRingBuffer.h24 #include <iterator>
45 * Forward iterator to this class. Implements an std:forward_iterator.
47 class iterator : public std::iterator<std::forward_iterator_tag, T> { class in class:android::final
49 iterator(T* ptr, size_t size, size_t pos, size_t ctr);
51 iterator& operator++();
53 iterator operator++(int);
55 bool operator==(const iterator& rhs);
57 bool operator!=(const iterator& rhs);
71 * Constant forward iterator t
177 RingBuffer<T>::iterator::iterator(T* ptr, size_t size, size_t pos, size_t ctr) : function in class:android::RingBuffer::iterator
[all...]
/frameworks/av/media/libnbaio/
H A DNBLog.cpp59 NBLog::FormatEntry::FormatEntry(const NBLog::FormatEntry::iterator &it) : FormatEntry(it.ptr) {}
69 NBLog::FormatEntry::iterator NBLog::FormatEntry::args() const {
102 NBLog::FormatEntry::iterator NBLog::FormatEntry::copyWithAuthor(
127 void NBLog::FormatEntry::iterator::copyTo(std::unique_ptr<audio_utils_fifo_writer> &dst) const {
132 void NBLog::FormatEntry::iterator::copyData(uint8_t *dst) const {
136 NBLog::FormatEntry::iterator NBLog::FormatEntry::begin() const {
137 return iterator(mEntry);
140 NBLog::FormatEntry::iterator::iterator() function in class:android::NBLog::FormatEntry::iterator
143 NBLog::FormatEntry::iterator function in class:android::NBLog::FormatEntry::iterator
146 NBLog::FormatEntry::iterator::iterator(const NBLog::FormatEntry::iterator &other) function in class:android::NBLog::FormatEntry::iterator
[all...]
/frameworks/av/media/libnbaio/include/
H A DNBLog.h72 class iterator;
74 explicit FormatEntry(const iterator &it);
89 // entry iterator
90 class iterator { class in class:android::NBLog::FormatEntry
92 iterator();
93 iterator(const uint8_t *entry);
94 iterator(const iterator &other);
100 iterator& operator++(); // ++i
102 iterator
[all...]

Completed in 86 milliseconds

1234