Searched refs:iterators (Results 1 - 25 of 39) sorted by relevance

12

/external/libcxx/test/support/
H A Ddebug_mode_helper.h288 CHECKPOINT("copy invalidates iterators");
308 CHECKPOINT("copy move invalidates iterators");
356 CHECKPOINT("testing swap invalidates iterators");
/external/python/cpython3/Lib/test/test_email/
H A Dtorture_test.py19 from email.iterators import _structure
H A Dtest_email.py39 from email import iterators namespace
2006 iterators._structure(msg, sfp)
2024 iterators._structure(msg, sfp)
2934 'generator', 'header', 'iterators', 'message',
3279 iterators._structure(msg, sfp)
3392 it = iterators.body_line_iterator(msg)
3398 it = iterators.body_line_iterator(msg)
3407 it = iterators.typed_subpart_iterator(msg, 'text')
3424 it = iterators.typed_subpart_iterator(msg, 'text', 'plain')
/external/python/cpython2/Lib/email/test/
H A Dtest_email_torture.py20 from email.iterators import _structure
H A Dtest_email_renamed.py31 from email import iterators namespace
1362 iterators._structure(msg, sfp)
1380 iterators._structure(msg, sfp)
2149 'header', 'iterators', 'message', 'message_from_file',
2349 iterators._structure(msg, sfp)
2392 it = iterators.body_line_iterator(msg)
2398 it = iterators.body_line_iterator(msg)
2410 it = iterators.typed_subpart_iterator(msg, 'text')
2427 it = iterators.typed_subpart_iterator(msg, 'text', 'plain')
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DSTLExtras.h254 // bidirectional iterators for this to work.
265 /// An iterator adaptor that filters the elements of given inner iterators.
362 std::tuple<Iters...> iterators; member in class:llvm::detail::zip_first
366 return value_type(*std::get<Ns>(iterators)...);
369 template <size_t... Ns> decltype(iterators) tup_inc(index_sequence<Ns...>) {
370 return std::tuple<Iters...>(std::next(std::get<Ns>(iterators))...);
376 void operator++() { iterators = tup_inc(index_sequence_for<Iters...>{}); }
379 return std::get<0>(iterators) != std::get<0>(other.iterators);
381 zip_first(Iters &&... ts) : iterators(st
[all...]
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
H A Djaxen-1.1-beta-7.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/dom/ org/jaxen/dom4j/ org/ ...
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterators.java54 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators
256 * Determines whether two iterators contain equal elements in the same order.
262 * <p>Note that this will modify the supplied iterators, since they will have
422 * Combines two iterators into a single iterator. The returned iterator
424 * {@code b}. The source iterators are not polled until necessary.
430 * concatenated iterators, i.e. the following should be avoided when in a loop:
440 * Combines three iterators into a single iterator. The returned iterator
442 * {@code b}, followed by the elements in {@code c}. The source iterators
449 * concatenated iterators, i.e. the following should be avoided when in a loop:
459 * Combines four iterators int
1219 mergeSorted( Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> comparator) argument
1240 MergingIterator(Iterable<? extends Iterator<? extends T>> iterators, final Comparator<? super T> itemComparator) argument
[all...]
H A DIterables.java46 * produced in this class are <i>lazy</i>, which means that their iterators
357 * Returns an iterable whose iterators cycle indefinitely over the elements of
387 * Returns an iterable whose iterators cycle indefinitely over the provided
411 * in {@code b}. The source iterators are not polled until necessary.
425 * iterators are not polled until necessary.
439 * the elements in {@code d}. The source iterators are not polled until
454 * {@code inputs}. The input iterators are not polled until necessary.
468 * {@code inputs}. The input iterators are not polled until necessary.
473 * iterators is null.
481 return Iterators.concat(iterators(input
489 private static <T> Iterator<Iterator<? extends T>> iterators( method in class:Iterables
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DIterators.java56 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators
258 * Determines whether two iterators contain equal elements in the same order.
264 * <p>Note that this will modify the supplied iterators, since they will have
440 * Combines two iterators into a single iterator. The returned iterator
442 * {@code b}. The source iterators are not polled until necessary.
448 * concatenated iterators, i.e. the following should be avoided when in a loop:
458 * Combines three iterators into a single iterator. The returned iterator
460 * {@code b}, followed by the elements in {@code c}. The source iterators
467 * concatenated iterators, i.e. the following should be avoided when in a loop:
477 * Combines four iterators int
1254 mergeSorted( Iterable<? extends Iterator<? extends T>> iterators, Comparator<? super T> comparator) argument
1275 MergingIterator(Iterable<? extends Iterator<? extends T>> iterators, final Comparator<? super T> itemComparator) argument
[all...]
H A DIterables.java48 * produced in this class are <i>lazy</i>, which means that their iterators
374 * Returns an iterable whose iterators cycle indefinitely over the elements of
404 * Returns an iterable whose iterators cycle indefinitely over the provided
428 * in {@code b}. The source iterators are not polled until necessary.
442 * iterators are not polled until necessary.
456 * the elements in {@code d}. The source iterators are not polled until
471 * {@code inputs}. The input iterators are not polled until necessary.
485 * {@code inputs}. The input iterators are not polled until necessary.
490 * iterators is null.
498 return Iterators.concat(iterators(input
506 private static <T> Iterator<Iterator<? extends T>> iterators( method in class:Iterables
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
H A Dvisitor.rb41 objects are similar to plain vanilla iterators, but provide two action hooks,
/external/llvm/lib/Support/Unix/
H A DSignals.inc188 // We avoid iterators in case of debug iterators that allocate or release
/external/python/cpython2/Lib/test/
H A Dtest_xml_etree.py979 def iterators(): function
981 Test iterators.
H A Dtest_dict.py572 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
573 for i in iterators:
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
H A DSignals.inc188 // We avoid iterators in case of debug iterators that allocate or release
/external/python/cpython2/Lib/email/
H A Dmessage.py799 from email.iterators import walk
/external/llvm/lib/Support/Windows/
H A DPath.inc98 // The iterators don't report separators and append() always attaches
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DPath.inc98 // The iterators don't report separators and append() always attaches
/external/python/cpython3/Lib/email/
H A Dmessage.py944 from email.iterators import walk
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.text_3.5.400.v20150505-1044.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djaxen-1.1.6.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/LICENSE.txt META-INF/maven/ ...
/external/guice/extensions/struts2/lib/
H A Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/struts2/ org/apache/struts2/dispatcher/ ...
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...

Completed in 969 milliseconds

12