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

1 2 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Iterable.java 6 * Utility class to allow use of Iterable feature in JDK 1.5+
8 public interface Iterable<T>
9 extends java.lang.Iterable<T>
  /libcore/ojluni/src/main/java/java/lang/
Iterable.java 46 public interface Iterable<T> {
55 * Performs the given action for each element of the {@code Iterable}
82 * {@code Iterable}.
87 * spliterator from the iterable's {@code Iterator}. The spliterator
88 * inherits the <em>fail-fast</em> properties of the iterable's iterator.
98 * {@code Iterable}.
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapPutIterableTester.java 37 * Tests for {@link Multimap#putAll(Object, Iterable)}.
46 assertTrue(multimap().putAll(sampleKeys().e0, new Iterable<V>() {
65 assertTrue(multimap().putAll(sampleKeys().e3, new Iterable<V>() {
171 Iterable<V> iterable = new Iterable<V>() { local
178 assertFalse(multimap().putAll(sampleKeys().e3, iterable)); local
191 Iterable<V> iterable = new Iterable<V>() local
202 multimap().putAll(sampleKeys().e3, iterable); local
    [all...]
  /external/python/cpython3/Lib/unittest/test/testmock/
testmagicmethods.py 292 class Iterable(object):
296 mock = Mock(spec=Iterable)
311 mock = MagicMock(spec=Iterable)
317 class Iterable(object):
321 mock = Mock(spec_set=Iterable)
336 mock = MagicMock(spec_set=Iterable)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
190 '''Construct an instance of the class from any iterable input.
193 does not accept an iterable for an input.
198 if not isinstance(other, Iterable):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
138 class Set(Sized, Iterable, Container):
139 """A set is a finite, iterable container.
184 '''Construct an instance of the class from any iterable input.
187 does not accept an iterable for an input.
192 if not isinstance(other, Iterable):
    [all...]
  /external/python/cpython2/Lib/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
190 '''Construct an instance of the class from any iterable input.
193 does not accept an iterable for an input.
198 if not isinstance(other, Iterable)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
185 '''Construct an instance of the class from any iterable input.
188 does not accept an iterable for an input.
193 if not isinstance(other, Iterable)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
185 '''Construct an instance of the class from any iterable input.
188 does not accept an iterable for an input.
193 if not isinstance(other, Iterable)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
185 '''Construct an instance of the class from any iterable input.
188 does not accept an iterable for an input.
193 if not isinstance(other, Iterable)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_abcoll.py 14 __all__ = ["Hashable", "Iterable", "Iterator",
55 class Iterable:
65 if cls is Iterable:
70 Iterable.register(str)
73 class Iterator(Iterable):
139 class Set(Sized, Iterable, Container):
140 """A set is a finite, iterable container.
185 '''Construct an instance of the class from any iterable input.
188 does not accept an iterable for an input.
193 if not isinstance(other, Iterable)
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclarationTest.java 214 // Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess
220 Iterable.class.getCanonicalName()),
301 assertEquals(new ReferenceTypeImpl(new ReflectionInterfaceDeclaration(Iterable.class, typeResolver), ImmutableList.of(typeVariable), typeResolver), ancestors.get("java.lang.Iterable"));
    [all...]
  /external/python/cpython3/Lib/
_collections_abc.py 14 "Hashable", "Iterable", "Iterator", "Generator", "Reversible",
32 # assert isinstance(it, Iterable)
243 class Iterable(metaclass=ABCMeta):
254 if cls is Iterable:
259 class Iterator(Iterable):
293 class Reversible(Iterable):
388 class Collection(Sized, Iterable, Container):
418 """A set is a finite, iterable container.
467 '''Construct an instance of the class from any iterable input.
470 does not accept an iterable for an input
    [all...]
typing.py 42 'Iterable',
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
Files2Test.java     [all...]
  /external/python/cpython3/Lib/test/
test_coroutines.py 533 TypeError, "'coroutine' object is not iterable")
563 TypeError, "'coroutine' object is not iterable")
    [all...]
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.0.5/
kotlin-stdlib-1.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.5/
kotlin-runtime.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.2/
kotlin-stdlib-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.5/
kotlin-stdlib-1.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.6/
kotlin-stdlib-1.0.6.jar 
  /external/robolectric/v1/lib/main/
xpp3-1.1.4c.jar 
  /prebuilts/tools/common/m2/repository/xpp3/xpp3/1.1.4c/
xpp3-1.1.4c.jar 
  /external/kotlinc/lib/
kotlin-runtime.jar 
kotlin-stdlib.jar 

Completed in 805 milliseconds

1 2 3