| /frameworks/base/cmds/incidentd/src/ |
| Reporter.h | 61 typedef vector<sp<ReportRequest>>::iterator iterator; typedef in class:android::os::incidentd::ReportRequestSet 63 iterator begin() { return mRequests.begin(); } 64 iterator end() { return mRequests.end(); }
|
| /frameworks/base/core/java/android/database/ |
| CursorJoiner.java | 19 import java.util.Iterator; 46 implements Iterator<CursorJoiner.Result>, Iterable<CursorJoiner.Result> { 98 public Iterator<Result> iterator() { method in class:CursorJoiner
|
| /frameworks/base/core/tests/coretests/src/android/database/ |
| MatrixCursorTest.java | 190 public Iterator<T> iterator() { method in class:MatrixCursorTest.NonIterableArrayList
|
| /frameworks/base/drm/java/android/drm/ |
| DrmUtils.java | 28 import java.util.Iterator; 113 * Iterator keyIterator = parser.keyIterator();<br> 169 * This method returns an iterator object that can be used to iterate over 172 * @return The iterator object. 174 public Iterator<String> iterator() { method in class:DrmUtils.ExtendedMetadataParser 175 return mMap.values().iterator(); 179 * This method returns an iterator object that can be used to iterate over 182 * @return The iterator object. 184 public Iterator<String> keyIterator() [all...] |
| /frameworks/base/tools/aapt2/cmd/ |
| Convert.cpp | 104 std::unique_ptr<io::IFileCollectionIterator> iterator = apk->GetFileCollection()->Iterator(); local 105 while (iterator->HasNext()) { 106 io::IFile* file = iterator->Next();
|
| /frameworks/compile/mclinker/include/mcld/ADT/ |
| HashIterator.h | 233 * \brief HashIterator provides a policy-based iterator. 239 * HashIterator is a template policy-based iterator, which can change its 256 typedef HashIterator<IteratorBase, nonconst_traits> iterator; typedef in class:mcld::HashIterator
|
| /frameworks/compile/mclinker/include/mcld/LD/ |
| BranchIsland.h | 36 typedef SectionData::iterator iterator; typedef in class:mcld::BranchIsland 40 typedef RelocationListType::iterator reloc_iterator; 59 iterator begin(); 63 iterator end();
|
| /frameworks/compile/mclinker/include/mcld/MC/ |
| SymbolCategory.h | 26 typedef OutputSymbols::iterator iterator; typedef in class:mcld::SymbolCategory 88 iterator begin(); 89 iterator end(); 93 iterator fileBegin(); 94 iterator fileEnd(); 98 iterator localBegin(); 99 iterator localEnd(); 103 iterator localDynBegin(); 104 iterator localDynEnd() [all...] |
| /frameworks/compile/mclinker/include/mcld/Script/ |
| ScriptFile.h | 50 typedef CommandQueue::iterator iterator; typedef in class:mcld::ScriptFile 59 iterator begin() { return m_CommandQueue.begin(); } 61 iterator end() { return m_CommandQueue.end(); }
|
| /frameworks/compile/mclinker/include/mcld/Target/ |
| KeyEntryMap.h | 51 typedef typename KeyEntryPool::iterator iterator; typedef in class:mcld::KeyEntryMap 74 iterator begin() { return m_Pool.begin(); } 76 iterator end() { return m_Pool.end(); } 102 iterator mapping, mEnd = m_Pool.end();
|
| /frameworks/compile/mclinker/lib/Target/ARM/ |
| ARMException.h | 89 typedef SectMap::iterator iterator; typedef in class:mcld::ARMInputExMap 118 /// begin - return the iterator to the begin of the map 119 iterator begin() { return m_SectToExData.begin(); } 122 /// end - return the iterator to the end of the map 123 iterator end() { return m_SectToExData.end(); } 127 void erase(iterator it) { m_SectToExData.erase(it); }
|
| /frameworks/native/libs/sensor/ |
| SensorManager.cpp | 50 auto iterator = sPackageInstances.find(packageName); local 52 if (iterator != sPackageInstances.end()) { 53 sensorManager = iterator->second;
|
| /frameworks/native/services/sensorservice/ |
| RingBuffer.h | 23 #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::SensorServiceUtil::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 to this class. Implements an std:forward_iterator 177 RingBuffer<T>::iterator::iterator(T* ptr, size_t size, size_t pos, size_t ctr) : function in class:android::SensorServiceUtil::RingBuffer::iterator [all...] |
| /frameworks/rs/ |
| rsList.h | 28 class iterator; 66 class iterator { class in class:android::renderscript::List 69 iterator& operator++() { 82 bool operator==(const iterator& other) const { 86 bool operator!=(const iterator& other) const { 95 explicit iterator(const List* list_) : list(list_) {} function in class:android::renderscript::List::iterator 96 iterator(const List* list_, LinkedBuffer* buffer_, T* p_) : function in class:android::renderscript::List::iterator 105 const iterator& begin() const { return beginIterator; } 107 iterator end() const { return iterator(this, currentBuffer, current); [all...] |
| rsMap.h | 79 class iterator { class in class:android::renderscript::Map 82 iterator& operator++() { 103 bool operator==(const iterator& other) const { 108 bool operator!=(const iterator& other) const { 118 iterator(size_t index, LinkNode* n, const Map* m) : bucket_index(index), node(n), map(m) {} function in class:android::renderscript::Map::iterator 126 iterator begin() const { 130 return iterator(i, node, this); 137 const iterator& end() const { return endIterator; } 139 iterator begin() { return ((const Map*)this)->begin(); } 141 const iterator& end() { return endIterator; [all...] |
| /frameworks/support/compat/src/main/java/androidx/core/app/ |
| TaskStackBuilder.java | 34 import java.util.Iterator; 255 public Iterator<Intent> iterator() { method in class:TaskStackBuilder 256 return mIntents.iterator();
|
| /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/ |
| Selection.java | 24 import java.util.Iterator; 89 * Returns an {@link Iterator} that iterators over the selection, *excluding* 95 public Iterator<K> iterator() { method in class:Selection 96 return mSelection.iterator();
|
| /libcore/jsr166-tests/src/test/java/jsr166/ |
| AbstractQueueTest.java | 13 import java.util.Iterator; 38 public Iterator iterator() { return null; } // not needed method in class:AbstractQueueTest.Succeed 49 public Iterator iterator() { return null; } // not needed method in class:AbstractQueueTest.Fail
|
| /libcore/luni/src/test/java/libcore/java/text/ |
| BreakIteratorTest.java | 24 BreakIterator iterator; field in class:BreakIteratorTest 29 iterator = BreakIterator.getCharacterInstance(Locale.US);
|
| /libcore/luni/src/test/java/libcore/java/util/ |
| TreeMapTest.java | 28 import java.util.Iterator; 50 Iterator<Entry<String, String>> iterator = map.entrySet().iterator(); local 51 Entry<String, String> entryA = iterator.next(); 55 Entry<String, String> entryB = iterator.next(); 57 Entry<String, String> entryC = iterator.next(); 77 Iterator<Entry<String, String>> iterator = subMap.entrySet().iterator(); local 150 Iterator<Entry<String,String>> iterator = map.entrySet().iterator(); local 167 Iterator<Entry<String,String>> iterator = map.entrySet().iterator(); local [all...] |
| /libcore/ojluni/src/main/java/java/util/ |
| AbstractCollection.java | 33 * extend this class and provide implementations for the <tt>iterator</tt> and 34 * <tt>size</tt> methods. (The iterator returned by the <tt>iterator</tt> 39 * <tt>UnsupportedOperationException</tt>), and the iterator returned by the 40 * <tt>iterator</tt> method must additionally implement its <tt>remove</tt> 72 * Returns an iterator over the elements contained in this collection. 74 * @return an iterator over the elements contained in this collection 76 public abstract Iterator<E> iterator(); method in class:AbstractCollection 99 Iterator<E> it = iterator() [all...] |
| Deque.java | 562 * Returns an iterator over the elements in this deque in proper sequence. 565 * @return an iterator over the elements in this deque in proper sequence 567 Iterator<E> iterator(); method in interface:Deque 570 * Returns an iterator over the elements in this deque in reverse 574 * @return an iterator over the elements in this deque in reverse 577 Iterator<E> descendingIterator();
|
| HashSet.java | 58 * <p>The iterators returned by this class's <tt>iterator</tt> method are 59 * <i>fail-fast</i>: if the set is modified at any time after the iterator is 60 * created, in any way except through the iterator's own <tt>remove</tt> 61 * method, the Iterator throws a {@link ConcurrentModificationException}. 62 * Thus, in the face of concurrent modification, the iterator fails quickly 66 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed 165 * Returns an iterator over the elements in this set. The elements 168 * @return an Iterator over the elements in this set 171 public Iterator<E> iterator() { method in class:HashSet [all...] |
| JumboEnumSet.java | 85 * Returns an iterator over the elements contained in this set. The 86 * iterator traverses the elements in their <i>natural order</i> (which is 88 * Iterator is a "weakly consistent" iterator that will never throw {@link 91 * @return an iterator over the elements contained in this set 93 public Iterator<E> iterator() { method in class:JumboEnumSet 97 private class EnumSetIterator<E extends Enum<E>> implements Iterator<E> { 100 * of the set not yet returned by this iterator. 110 * The bit representing the last element returned by this iterator [all...] |
| List.java | 46 * <tt>iterator</tt>, <tt>add</tt>, <tt>remove</tt>, <tt>equals</tt>, and 58 * The <tt>List</tt> interface provides a special iterator, called a 61 * <tt>Iterator</tt> interface provides. A method is provided to obtain a 62 * list iterator that starts at a specified position in the list.<p> 148 * Returns an iterator over the elements in this list in proper sequence. 150 * @return an iterator over the elements in this list in proper sequence 152 Iterator<E> iterator(); method in interface:List 289 * collection's iterator (optional operation). The behavior of this 315 * specified collection's iterator. The behavior of this operation i [all...] |