HomeSort by relevance Sort by last modified time
    Searched defs:Iterator (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/WebCore/loader/cache/
CachedResourceClientWalker.cpp 34 typedef HashCountedSet<CachedResourceClient*>::const_iterator Iterator;
35 Iterator end = set.end();
37 for (Iterator current = set.begin(); current != end; ++current)
  /libcore/luni/src/main/java/java/util/
Iterator.java 21 * An iterator over a sequence of objects, such as a collection.
23 * <p>If a collection has been changed since the iterator was created,
29 * <p>Implementing {@link Iterable} and returning an {@code Iterator} allows your
33 * the type of object returned by the iterator.
35 public interface Iterator<E> {
43 * Returns the next object and advances the iterator.
  /frameworks/base/include/drm/
DrmInfo.h 52 * Iterator for key
76 * Iterator
78 class Iterator {
82 Iterator(const DrmInfo* drmInfo)
86 Iterator(const Iterator& iterator);
87 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmMetadata.h 33 * Iterator for key
55 * Iterator for constraints
57 class Iterator {
60 Iterator(DrmMetadata* drmMetadata) : mDrmMetadata(drmMetadata), mIndex(0) {}
63 Iterator(const Iterator& iterator);
64 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmConstraints.h 68 * Iterator for key
91 * Iterator for constraints
93 class Iterator {
96 Iterator(DrmConstraints* drmConstraints)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
DrmInfoRequest.h 66 * Iterator for key
90 * Iterator
92 class Iterator {
96 Iterator(const DrmInfoRequest* drmInfoRequest)
100 Iterator(const Iterator& iterator);
101 Iterator& operator=(const Iterator& iterator);
    [all...]
  /frameworks/base/drm/common/
DrmConstraints.cpp 88 DrmConstraints::Iterator DrmConstraints::iterator() { function in class:DrmConstraints
89 return Iterator(this);
92 DrmConstraints::Iterator::Iterator(const DrmConstraints::Iterator& iterator) :
93 mDrmConstraints(iterator.mDrmConstraints),
94 mIndex(iterator.mIndex) {
97 DrmConstraints::Iterator& DrmConstraints::Iterator::operator=
    [all...]
DrmInfoRequest.cpp 57 DrmInfoRequest::Iterator DrmInfoRequest::iterator() const { function in class:DrmInfoRequest
58 return Iterator(this);
85 // Iterator implementation
86 DrmInfoRequest::Iterator::Iterator(const DrmInfoRequest::Iterator& iterator) :
87 mDrmInfoRequest(iterator.mDrmInfoRequest), mIndex(iterator.mIndex)
    [all...]
DrmMetadata.cpp 92 DrmMetadata::Iterator DrmMetadata::iterator() { function in class:DrmMetadata
93 return Iterator(this);
96 DrmMetadata::Iterator::Iterator(const DrmMetadata::Iterator& iterator) :
97 mDrmMetadata(iterator.mDrmMetadata),
98 mIndex(iterator.mIndex) {
99 LOGV("DrmMetadata::Iterator::Iterator")
    [all...]
DrmInfo.cpp 64 DrmInfo::Iterator DrmInfo::iterator() const { function in class:DrmInfo
65 return Iterator(this);
90 // Iterator implementation
91 DrmInfo::Iterator::Iterator(const DrmInfo::Iterator& iterator)
92 : mDrmInfo(iterator.mDrmInfo), mIndex(iterator.mIndex)
    [all...]
  /external/chromium/base/
id_map.h 82 typename HashTable::iterator i = data_.find(id);
117 class Iterator {
119 Iterator(IDMap<T, OS>* map)
127 ~Iterator() {
167 typedef Iterator<T> iterator; typedef in class:IDMap
168 typedef Iterator<const T> const_iterator;
182 for (typename HashTable::iterator i = table->begin();
204 // finished. This way we manage to not invalidate the iterator when an element
observer_list.h 22 // iterator. So, it safely handles the case of an observer removing itself
77 // An iterator class that can be used to access the list of observers. See
79 class Iterator {
81 Iterator(ObserverListBase<ObserverType>& list)
90 ~Iterator() {
123 typename ListType::iterator it =
144 for (typename ListType::iterator it = observers_.begin();
157 typename ListType::iterator it = observers_.begin();
176 friend class ObserverListBase::Iterator;
202 ObserverListBase<ObserverType>::Iterator it(observer_list);
    [all...]
  /external/webkit/Source/WebKit/win/
COMPropertyBag.h 207 typedef HashMapType::const_iterator Iterator;
208 Iterator current = m_hashMap.begin();
209 Iterator end = m_hashMap.end();
WebCoreStatistics.cpp 144 typedef TypeCountSet::const_iterator Iterator;
145 Iterator end = jsObjectTypeNames->end();
147 for (Iterator current = jsObjectTypeNames->begin(); current != end; ++current)
WebKitStatistics.cpp 143 typedef HashCountedSet<String>::const_iterator Iterator;
144 Iterator end = gClassNameCount.end();
146 for (Iterator current = gClassNameCount.begin(); current != end; ++current) {
  /external/webkit/Tools/gdb/
webkit.py 220 class Iterator:
243 return self.Iterator(start, start + self.val['m_size'])
  /frameworks/base/media/libstagefright/include/
ID3.h 47 struct Iterator {
48 Iterator(const ID3 &parent, const char *id);
49 ~Iterator();
69 Iterator(const Iterator &);
70 Iterator &operator=(const Iterator &);
  /external/chromium/net/http/
http_request_headers.cc 44 HttpRequestHeaders::Iterator::Iterator(const HttpRequestHeaders& headers)
49 HttpRequestHeaders::Iterator::~Iterator() {}
51 bool HttpRequestHeaders::Iterator::GetNext() {
82 HeaderVector::iterator it = FindHeader(key);
91 HeaderVector::iterator it = FindHeader(key);
97 HeaderVector::iterator it = FindHeader(key);
182 HttpRequestHeaders::HeaderVector::iterator
184 for (HeaderVector::iterator it = headers_.begin()
    [all...]
http_request_headers.h 35 class Iterator {
37 explicit Iterator(const HttpRequestHeaders& headers);
38 ~Iterator();
40 // Advances the iterator to the next header, if any. Returns true if there
54 DISALLOW_COPY_AND_ASSIGN(Iterator);
142 HeaderVector::iterator FindHeader(const base::StringPiece& key);
  /external/v8/src/
data-flow.h 45 // Iterator for the elements of this BitVector.
46 class Iterator BASE_EMBEDDED {
48 explicit Iterator(BitVector* target)
56 ~Iterator() { }
211 // Iterator for sparse set elements. Elements should not be added or
213 class Iterator BASE_EMBEDDED {
215 explicit Iterator(SparseSet* target) : target_(target), current_(0) {
218 ~Iterator() {
  /frameworks/base/media/libstagefright/id3/
ID3.cpp 345 ID3::Iterator::Iterator(const ID3 &parent, const char *id)
358 ID3::Iterator::~Iterator() {
365 bool ID3::Iterator::done() const {
369 void ID3::Iterator::next() {
379 void ID3::Iterator::getID(String8 *id) const {
466 void ID3::Iterator::getString(String8 *id) const {
538 const uint8_t *ID3::Iterator::getData(size_t *length) const {
550 size_t ID3::Iterator::getHeaderLength() const
    [all...]
  /external/clang/test/FixIt/
fixit.cpp 85 class Iterator {
91 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
96 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
  /external/llvm/include/llvm/ADT/
DenseSet.h 62 class Iterator {
63 typename MapTy::iterator I;
66 typedef typename MapTy::iterator::difference_type difference_type;
72 Iterator(const typename MapTy::iterator &i) : I(i) {}
77 Iterator& operator++() { ++I; return *this; }
78 bool operator==(const Iterator& X) const { return I == X.I; }
79 bool operator!=(const Iterator& X) const { return I != X.I; }
102 typedef Iterator iterator; typedef in class:llvm::DenseSet
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
HashIterators.h 65 HashTableIteratorAdapter(const typename HashTableType::iterator& impl) : m_impl(impl) {}
82 typename HashTableType::iterator m_impl;
121 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
125 HashTableKeysIterator(const Iterator& impl) : m_impl(impl) {}
139 Iterator m_impl;
144 typedef HashTableIteratorAdapter<HashTableType, std::pair<KeyType, MappedType> > Iterator;
148 HashTableValuesIterator(const Iterator& impl) : m_impl(impl) {}
162 Iterator m_impl;
  /external/chromium/net/disk_cache/
rankings.cc 189 Rankings::Iterator::Iterator(Rankings* rankings) {
190 memset(this, 0, sizeof(Iterator));
194 Rankings::Iterator::~Iterator() {
599 // we have, and let the iterator logic update it when the entry changes.
846 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
857 for (IteratorList::iterator it = iterators_.begin(); it != iterators_.end();
863 LOG(WARNING) << "Invalidating iterator at 0x" << std::hex << address;

Completed in 904 milliseconds

1 2 3