/dalvik/libcore/prefs/src/main/java/java/util/prefs/ |
NodeSet.java | 7 import java.util.Iterator; 17 public NodeSet(Iterator<Node> nodes) {
|
/external/stlport/stlport/stl/debug/ |
_hashtable.h | 110 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _DbgTraits<_NonConstTraits> > iterator; typedef in class:hashtable 113 typedef iterator local_iterator; 117 typedef typename _Base::iterator _Base_iterator; 171 //Should not invalidate end iterator 183 iterator begin() { return iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } 184 iterator end() { return iterator(&_M_iter_list, _M_non_dbg_impl.end()); } 186 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterators 191 //TODO: Add checks for iterator locality -> avoids comparison between different bucket iterator [all...] |
_vector.h | 118 _STLP_PRIV _DbgTraits<_STLP_PRIV _Vector_nonconst_traits<value_type, typename _Base::iterator> > > iterator; typedef in class:vector 121 _STLP_PRIV _DbgTraits<_STLP_PRIV _Vector_const_traits<value_type, typename _Base::iterator> > > const_iterator; 126 void _Invalidate_iterator(const iterator& __it) 128 void _Invalidate_iterators(const iterator& __first, const iterator& __last) 146 iterator begin() { return iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } 148 iterator end() { return iterator(&_M_iter_list, _M_non_dbg_impl.end()); [all...] |
_list.h | 74 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _DbgTraits<_Nonconst_traits<value_type> > > iterator; typedef in class:list 83 void _Invalidate_iterator(const iterator& __it) 85 void _Invalidate_iterators(const iterator& __first, const iterator& __last) 88 typedef typename _Base::iterator _Base_iterator; 154 //Should not invalidate end iterator 163 iterator begin() { return iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } 166 iterator end() { return iterator(&_M_iter_list, _M_non_dbg_impl.end()); [all...] |
_deque.h | 69 typedef _STLP_PRIV _DBG_iter<_Base, _STLP_PRIV _DbgTraits<_Nonconst_traits<value_type> > > iterator; typedef in class:deque 80 void _Invalidate_iterator(const iterator& __it) 82 void _Invalidate_iterators(const iterator& __first, const iterator& __last) 89 iterator begin() { return iterator(&_M_iter_list, _M_non_dbg_impl.begin()); } 90 iterator end() { return iterator(&_M_iter_list, _M_non_dbg_impl.end()); } 286 iterator insert(iterator __pos, const value_type& __x = _Tp()) [all...] |
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/ |
uiterator.h | 7 /// \brief Contains various iterator adapters. 21 /// \brief Contains the type traits of \p Iterator 23 template <typename Iterator> 25 typedef typename Iterator::value_type value_type; 26 typedef typename Iterator::difference_type difference_type; 27 typedef typename Iterator::pointer pointer; 28 typedef typename Iterator::reference reference; 75 /// \brief Wraps \p Iterator to behave in an exactly opposite manner. 77 template <class Iterator> 80 typedef typename iterator_traits<Iterator>::value_type value_type 119 typedef typename Container::iterator iterator; typedef in class:ustl::insert_iterator [all...] |
/dalvik/libcore/text/src/main/java/java/text/ |
AttributedString.java | 25 import java.util.Iterator; 94 * begin, end, and current index as this attributed iterator. 96 * @return a shallow copy of this attributed iterator. 165 Iterator<Range> it = ranges.iterator(); 193 Iterator<Map.Entry<Attribute, List<Range>>> it = attrString.attributeMap 194 .entrySet().iterator(); 209 Iterator<Range> it = ranges.iterator(); 236 Iterator<Map.Entry<Attribute, List<Range>>> it = attrString.attributeMa [all...] |
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/ |
WeakHashMapTest.java | 27 import java.util.Iterator; 66 Iterator<Map.Entry<Object, Object>> it = entrySet.iterator(); 98 assertSame("Assert 5: Entries not identical", entrySet.iterator() 99 .next(), entrySet.iterator().next()); 101 // remove alternate entries using the iterator, and ensure the 104 it = entrySet.iterator(); 118 it = entrySet.iterator(); 125 it = entrySet.iterator(); 131 assertTrue("Assert 8: iterator not empty", !entrySet.iterator( [all...] |
AbstractSetTest.java | 29 import java.util.Iterator; 38 public Iterator iterator() { method in class:AbstractSetTest.Mock_AbstractSet 39 return new Iterator() { 100 public Iterator iterator() { 101 return new Iterator() {
|
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
BreakIteratorTest.java | 37 BreakIterator iterator; field in class:BreakIteratorTest 44 iterator = BreakIterator.getCharacterInstance(Locale.US); 89 assertNotSame(newOne, iterator); 90 assertEquals(newOne, iterator); 93 assertEquals(newOne, iterator); 96 assertEquals(newOne, iterator); 99 assertFalse(wordIterator.equals(iterator)); 102 assertFalse(lineIterator.equals(iterator)); 105 assertFalse(senteIterator.equals(iterator)); 114 BreakIterator cloned = (BreakIterator) iterator.clone() [all...] |
/external/stlport/test/unit/ |
iterator_header_test.cpp | 8 #include <iterator>
|
/packages/apps/Email/src/org/apache/commons/io/ |
LineIterator.java | 22 import java.util.Iterator;
26 * An Iterator over the lines in a <code>Reader</code>.
29 * When you have finished with the iterator you should close the reader
32 * method on the iterator.
43 * LineIterator.closeQuietly(iterator);
53 public class LineIterator implements Iterator {
59 /** A flag indicating if the iterator has been fully read. */
63 * Constructs an iterator of the lines for a <code>Reader</code>.
116 * @return true if valid, false to remove from the iterator
150 * lines of a larger file. If you do not close the iterator
[all...] |
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
ByteQueue.java | 22 import java.util.Iterator;
57 public Iterator iterator() {
method in class:ByteQueue 58 return buf.iterator();
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
PKIXPolicyNode.java | 6 import java.util.Iterator; 52 public Iterator getChildren() 54 return children.iterator(); 137 Iterator _iter = expectedPolicies.iterator(); 144 _iter = policyQualifiers.iterator(); 158 _iter = children.iterator();
|
CertStoreCollectionSpi.java | 14 import java.util.Iterator; 39 Iterator iter = params.getCollection().iterator(); 75 Iterator iter = params.getCollection().iterator();
|
/external/astl/include/ |
set | 40 #include <iterator> 70 typedef typename impl_type::iterator iterator; 79 // - an iterator which points to the equivalent element in the set 82 pair<iterator, bool> insert(const value_type& elt) { 83 typename impl_type::iterator i = mImpl.begin(); 86 return pair<iterator, bool>(i, false); 91 return pair<iterator, bool>(--mImpl.end(), true); 113 iterator begin() { return mImpl.begin(); } 114 iterator end() { return mImpl.end(); [all...] |
/external/stlport/stlport/stl/ |
_string_workaround.h | 80 // it can't be an iterator. 189 // it can't be an iterator. 299 // it can't be an iterator. 309 * with mixed parameters iterator and const_iterator. 346 iterator insert(iterator __p, _CharT __c) 349 void insert(iterator __p, size_t __n, _CharT __c) 353 // it can't be an iterator. 355 void insert(iterator __p, _InputIter __first, _InputIter __last) { 362 void insert(iterator __p, const _CharT* __f, const _CharT* __l) [all...] |
/cts/tests/tests/location/src/android/location/cts/ |
GpsStatusTest.java | 30 import java.util.Iterator; 63 Iterator<GpsSatellite> iterator = satellites.iterator(); local 66 while (iterator.hasNext()) {
|
/cts/tools/dx-tests/utilclasses/util/ |
CompileAllJasmin.class | |
/external/guava/src/com/google/common/collect/ |
LexicographicalOrdering.java | 22 import java.util.Iterator; 40 Iterator<T> left = leftIterable.iterator(); 41 Iterator<T> right = rightIterable.iterator();
|
/dalvik/libcore/luni/src/main/java/java/util/ |
AbstractCollection.java | 25 * iterator()} and {@code size()} to create an immutable collection. To create a 75 Iterator<? extends E> it = collection.iterator(); 87 * remove} method on each element. If the iterator does not support removal 94 * it the iterator does not support removing elements from 96 * @see #iterator 101 Iterator<E> it = iterator(); 113 * the iterator until the element is found. If {@code object == null} then 114 * each element {@code e} returned by the iterator is compared with the tes 199 public abstract Iterator<E> iterator(); method in class:AbstractCollection [all...] |
/frameworks/base/awt/javax/imageio/spi/ |
ServiceRegistry.java | 48 * an Iterator of Class objects for defining of categories. 50 public ServiceRegistry(Iterator<Class<?>> categoriesIterator) { 52 throw new IllegalArgumentException("categories iterator should not be NULL"); 68 * @return the iterator of providers objects for this service. 70 public static <T> Iterator<T> lookupProviders(Class<T> providerClass, ClassLoader loader) { 80 * @return the iterator of providers objects for this service. 82 public static <T> Iterator<T> lookupProviders(Class<T> providerClass) { 107 public void registerServiceProviders(Iterator<?> providers) { 108 for (Iterator<?> iterator = providers; iterator.hasNext();) [all...] |
/frameworks/base/include/utils/ |
List.h | 68 * Iterator for walking through the list. 99 // this will handle conversions from iterator to const_iterator 114 * Iterator comparison. 123 * handle comparisons between iterator and const_iterator 175 typedef _ListIterator<T, NON_CONST_ITERATOR> iterator; typedef in class:android::List 190 * _Node* we're returning is converted to an "iterator" by a 193 inline iterator begin() { 194 return iterator(mpMiddle->getNext()); 199 inline iterator end() { 200 return iterator(mpMiddle); [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMDefaultBaseIterators.java | 89 * Get an iterator that can navigate over an XPath Axis, predicated by 91 * Returns an iterator that must be initialized 92 * with a start node (using iterator.setStartNode()). 102 DTMAxisIterator iterator = null; local 113 // iterator = new FilterIterator(getAxisIterator(axis), 121 iterator = new TypedSingletonIterator(type); 124 iterator = new TypedChildrenIterator(type); 135 iterator = new TypedDescendantIterator(type); 138 iterator = (new TypedDescendantIterator(type)).includeSelf(); 141 iterator = new TypedFollowingIterator(type) 183 DTMAxisIterator iterator = null; local [all...] |
/external/opencore/baselibs/gen_data_structures/src/ |
linked_list.h | 81 // get_first() and get_next() together provide iterator function 85 iterator = head; 86 ele = iterator->data; 92 if (iterator == tail) return 0; 93 if (! iterator) 96 iterator = head; 100 iterator = iterator->next; 102 ele = iterator->data; 111 LinkedListElement<LLClass> *iterator; member in class:LinkedList [all...] |