HomeSort by relevance Sort by last modified time
    Searched defs:Iterator (Results 226 - 250 of 341) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
376 'D.iterkeys() -> an iterator over the keys of D'
380 'D.itervalues() -> an iterator over the values of D'
385 'D.iteritems() -> an iterator over the (key, value) items of D'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
73 class Iterator(Iterable):
77 'Return the next item from the iterator. When exhausted, raise StopIteration'
85 if cls is Iterator:
376 'D.iterkeys() -> an iterator over the keys of D'
380 'D.itervalues() -> an iterator over the values of D'
385 'D.iteritems() -> an iterator over the (key, value) items of D'
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_iter.py 52 # Helper to check that an iterator returns a given sequence
162 # Test exception propagation through function iterator
179 # Test exception propagation through sequence iterator
558 # iterator cannot be restarted. So what we're testing here is
704 class Iterator:
726 return Iterator(self.start, self.finish)
897 # Avoid a crash, when an iterator deletes its next() method.
  /external/clang/test/FixIt/
fixit.cpp 143 class Iterator {
149 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
154 typename F1<T>:: /*template*/ Iterator<0> Mypos; // expected-error {{use 'template' keyword to treat 'Iterator' as a dependent template name}}
  /external/clang/test/SemaCXX/
conversion-function.cpp 356 template <typename T> struct Iterator;
360 struct Iterator<int> {
366 typedef typename Iterator<T>::container_type X;
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.hpp 150 typedef std::vector<StructMember>::iterator Iterator;
159 inline Iterator begin (void) { return m_members.begin(); }
161 inline Iterator end (void) { return m_members.end(); }
189 typedef std::vector<Uniform>::iterator Iterator;
206 inline Iterator begin (void) { return m_uniforms.begin(); }
208 inline Iterator end (void) { return m_uniforms.end(); }
  /external/deqp/framework/delibs/decpp/
dePoolArray.hpp 30 #include <iterator>
55 typedef PoolArrayIterator<T, Alignment> Iterator;
58 typedef Iterator iterator; typedef in class:de::PoolArray
83 Iterator begin (void) { return Iterator(this, 0); }
84 Iterator end (void) { return Iterator(this, (deIntptr)m_numElements); }
133 PoolArrayConstIterator (const PoolArrayIterator<T, Alignment>& iterator);
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 144 typedef std::vector<StructMember>::iterator Iterator;
152 inline Iterator begin (void) { return m_members.begin(); }
154 inline Iterator end (void) { return m_members.end(); }
182 typedef std::vector<Uniform>::iterator Iterator;
198 inline Iterator begin (void) { return m_uniforms.begin(); }
200 inline Iterator end (void) { return m_uniforms.end(); }
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CharsTrie.java 370 * @return A new CharsTrie.Iterator.
373 public Iterator iterator() { method in class:CharsTrie
374 return new Iterator(chars_, pos_, remainingMatchLength_, 0);
379 * @param maxStringLength If 0, the iterator returns full strings.
380 * Otherwise, the iterator returns strings with this maximum length.
381 * @return A new CharsTrie.Iterator.
383 public Iterator iterator(int maxStringLength) { method in class:CharsTrie
384 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength)
395 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { method in class:CharsTrie
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CharsTrie.java 385 * @return A new CharsTrie.Iterator.
389 public Iterator iterator() { method in class:CharsTrie
390 return new Iterator(chars_, pos_, remainingMatchLength_, 0);
395 * @param maxStringLength If 0, the iterator returns full strings.
396 * Otherwise, the iterator returns strings with this maximum length.
397 * @return A new CharsTrie.Iterator.
400 public Iterator iterator(int maxStringLength) { method in class:CharsTrie
401 return new Iterator(chars_, pos_, remainingMatchLength_, maxStringLength)
413 public static Iterator iterator(CharSequence trieChars, int offset, int maxStringLength) { method in class:CharsTrie
    [all...]
  /external/libchrome/base/metrics/
persistent_histogram_allocator.cc 153 // Get the next sample-record. The iterator will always resume from where
253 PersistentHistogramAllocator::Iterator::Iterator(
258 PersistentHistogramAllocator::Iterator::GetNextWithIgnore(Reference ignore) {
    [all...]
persistent_memory_allocator.cc 148 PersistentMemoryAllocator::Iterator::Iterator(
152 PersistentMemoryAllocator::Iterator::Iterator(
159 void PersistentMemoryAllocator::Iterator::Reset() {
164 void PersistentMemoryAllocator::Iterator::Reset(Reference starting_after) {
179 PersistentMemoryAllocator::Iterator::GetLast() {
187 PersistentMemoryAllocator::Iterator::GetNext(uint32_t* type_return) {
207 if (!block) // Invalid iterator state.
269 PersistentMemoryAllocator::Iterator::GetNextOfType(uint32_t type_match)
    [all...]
  /external/python/cpython2/Lib/test/
test_iter.py 53 # Helper to check that an iterator returns a given sequence
129 for x in exhit: # exhaust the iterator
174 # Test exception propagation through function iterator
191 # Test exception propagation through sequence iterator
570 # iterator cannot be restarted. So what we're testing here is
714 class Iterator:
736 return Iterator(self.start, self.finish)
907 # Avoid a crash, when an iterator deletes its next() method.
922 # The code to extend a list with an iterator has a fair
  /external/python/cpython3/Lib/
_collections_abc.py 14 "Hashable", "Iterable", "Iterator", "Generator", "Reversible",
259 class Iterator(Iterable):
265 'Return the next item from the iterator. When exhausted, raise StopIteration'
273 if cls is Iterator:
277 Iterator.register(bytes_iterator)
278 Iterator.register(bytearray_iterator)
279 #Iterator.register(callable_iterator)
280 Iterator.register(dict_keyiterator)
281 Iterator.register(dict_valueiterator)
282 Iterator.register(dict_itemiterator
    [all...]
  /external/python/cpython3/Lib/test/
test_iter.py 69 # Helper to check that an iterator returns a given sequence
99 self.assertTrue(isinstance(it, collections.abc.Iterator))
168 # initial iterator
176 # running iterator
184 # empty iterator
193 # exhausted iterator
198 self.assertTrue(isinstance(it, collections.abc.Iterator))
205 for x in exhit: # exhaust the iterator
250 # Test exception propagation through function iterator
267 # Test exception propagation through sequence iterator
    [all...]
  /external/scapy/scapy/modules/
six.py 554 Iterator = object
565 class Iterator(object):
620 _add_doc(iterkeys, "Return an iterator over the keys of a dictionary.")
621 _add_doc(itervalues, "Return an iterator over the values of a dictionary.")
623 "Return an iterator over the (key, value) pairs of a dictionary.")
625 "Return an iterator over the (key, [values]) pairs of a dictionary.")
  /external/skia/src/sfnt/
SkOTTable_glyf.h 29 class Iterator {
31 Iterator(const SkOTTableGlyph& glyf,
  /external/skqp/src/sfnt/
SkOTTable_glyf.h 29 class Iterator {
31 Iterator(const SkOTTableGlyph& glyf,
  /external/v8/include/
v8-util.h 44 typedef typename Impl::iterator Iterator;
49 static Iterator Begin(Impl* impl) { return impl->begin(); }
50 static Iterator End(Impl* impl) { return impl->end(); }
51 static K Key(Iterator it) { return it->first; }
52 static PersistentContainerValue Value(Iterator it) { return it->second; }
55 std::pair<Iterator, bool> res = impl->insert(std::make_pair(key, value));
64 Iterator it = impl->find(key);
69 Iterator it = impl->find(key);
232 typedef typename Traits::Iterator It
    [all...]
  /external/v8/src/ast/
ast-types.cc 579 for (Iterator<i::Map> it = this->Classes(); !it.Done(); it.Advance()) {
596 for (Iterator<i::Map> it = that->Classes(); !it.Done(); it.Advance()) {
687 for (Iterator<i::Object> it = this->Constants(); !it.Done(); it.Advance()) {
    [all...]
  /external/v8/src/
d8.h 8 #include <iterator>
75 class Iterator {
77 explicit Iterator(CounterMap* map)
  /hardware/google/av/codec2/vndk/include/util/
C2InterfaceUtils.h 24 #include <iterator>
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_iter.py 52 # Helper to check that an iterator returns a given sequence
162 # Test exception propagation through function iterator
179 # Test exception propagation through sequence iterator
558 # iterator cannot be restarted. So what we're testing here is
704 class Iterator:
726 return Iterator(self.start, self.finish)
897 # Avoid a crash, when an iterator deletes its next() method.
912 # The code to extend a list with an iterator has a fair
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_iter.py 52 # Helper to check that an iterator returns a given sequence
162 # Test exception propagation through function iterator
179 # Test exception propagation through sequence iterator
558 # iterator cannot be restarted. So what we're testing here is
704 class Iterator:
726 return Iterator(self.start, self.finish)
897 # Avoid a crash, when an iterator deletes its next() method.
912 # The code to extend a list with an iterator has a fair
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_iter.py 52 # Helper to check that an iterator returns a given sequence
162 # Test exception propagation through function iterator
179 # Test exception propagation through sequence iterator
558 # iterator cannot be restarted. So what we're testing here is
704 class Iterator:
726 return Iterator(self.start, self.finish)
897 # Avoid a crash, when an iterator deletes its next() method.
912 # The code to extend a list with an iterator has a fair

Completed in 1468 milliseconds

1 2 3 4 5 6 7 8 91011>>