/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
MapTestSuiteBuilder.java | 206 public Iterable<Map.Entry<K, V>> order( 270 public Iterable<K> order(List<K> insertionOrder) { 329 public Iterable<V> order(List<V> insertionOrder) {
|
/external/guava/guava/src/com/google/common/base/ |
Equivalence.java | 244 public final <S extends T> Equivalence<Iterable<S>> pairwise() { 245 // Ideally, the returned equivalence would support Iterable<? extends T>. However,
|
/external/guava/guava/src/com/google/common/collect/ |
ArrayTable.java | 93 Iterable<? extends R> rowKeys, Iterable<? extends C> columnKeys) { 99 * iterable, to specify the allowed row keys and/or column keys. Note that 146 private ArrayTable(Iterable<? extends R> rowKeys, 147 Iterable<? extends C> columnKeys) {
|
ImmutableCollection.java | 322 public Builder<E> addAll(Iterable<? extends E> elements) {
|
MinMaxPriorityQueue.java | 105 Iterable<? extends E> initialContents) { 204 Iterable<? extends T> initialContents) { 805 private boolean containsExact(Iterable<E> elements, E target) { 902 int maximumSize, Iterable<?> initialContents) {
|
Ranges.java | 236 Iterable<C> values) {
|
ImmutableListMultimap.java | 179 @Override public Builder<K, V> putAll(K key, Iterable<? extends V> values) { 328 K key, Iterable<? extends V> values) {
|
MapConstraints.java | 487 @Override public boolean putAll(K key, Iterable<? extends V> values) { 501 K key, Iterable<? extends V> values) { 717 K key, Iterable<? extends V> values) { 738 K key, Iterable<? extends V> values) { 756 K key, Iterable<? extends V> values) { 766 Iterable<? extends V> values,
|
Sets.java | 99 Iterable<E> elements) { 119 * exception on an empty collection, and it may be called on any iterable, not 122 public static <E extends Enum<E>> EnumSet<E> newEnumSet(Iterable<E> iterable, 128 * type. This means that, when iterable is null but elementType is not, 134 * elementType, the problem argument, is harmful, while checking iterable, 137 checkNotNull(iterable); 139 Iterables.addAll(set, iterable); 202 * non-null, use {@link ImmutableSet#copyOf(Iterable)} instead. 205 * {@link #newEnumSet(Iterable, Class)} instead [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
RegularContiguousSet.java | 108 return range.containsAll((Iterable<? extends C>) targets);
|
ImmutableListMultimap.java | 174 @Override public Builder<K, V> putAll(K key, Iterable<? extends V> values) { 323 K key, Iterable<? extends V> values) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MapGenerators.java | 142 public Iterable<String> order(List<String> insertionOrder) {
|
SortedMultisetTestSuiteBuilder.java | 240 public Iterable<E> order(List<E> insertionOrder) { 269 public Iterable<E> order(List<E> insertionOrder) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionIteratorTester.java | 96 IteratorTester.KnownOrder knownOrder, Iterable<E> elements) {
|
MapPutAllTester.java | 172 private void putAll(Iterable<Entry<K, V>> entries) {
|
/external/guava/guava-tests/test/com/google/common/cache/ |
TestingCacheLoaders.java | 46 public Map<K, V> loadAll(Iterable<? extends K> keys) throws Exception {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTestCase.java | 96 Iterable<String> parameterNames = Iterables.transform(
|
ImmutableSortedMultisetTest.java | 156 .onResultOf(new Function<String[], Iterable<Comparable>>() { 158 public Iterable<Comparable> apply(String[] input) { 256 private static class CountingIterable implements Iterable<String> { 267 CountingIterable iterable = new CountingIterable(); local 268 Multiset<String> multiset = ImmutableSortedMultiset.copyOf(iterable); 270 assertEquals(1, iterable.count); 399 tester.setDefault(Iterable.class, Collections.emptySet());
|
/external/mockito/src/org/mockito/internal/util/collections/ |
HashCodeAndEqualsSafeSet.java | 149 public static HashCodeAndEqualsSafeSet of(Iterable<Object> objects) {
|
/frameworks/base/tools/preload/ |
PrintHtmlDiff.java | 88 Iterable<LoadedClass> classes) {
|
/libcore/luni/src/main/java/java/util/ |
ServiceLoader.java | 72 public final class ServiceLoader<S> implements Iterable<S> {
|
/packages/apps/Mms/src/com/android/mms/data/ |
ContactList.java | 17 public static ContactList getByNumbers(Iterable<String> numbers, boolean canBlock) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SelectionHandles.java | 35 public class SelectionHandles implements Iterable<SelectionHandle> { 135 // Implements Iterable<SelectionHandle>
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
ByteString.java | 60 public abstract class ByteString implements Iterable<Byte> { 393 * Concatenates all byte strings in the iterable and returns the result. 404 public static ByteString copyFrom(Iterable<ByteString> byteStrings) { 423 // Internal function used by copyFrom(Iterable<ByteString>). 425 // iterable. [all...] |
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
SuggestionCursorUtil.java | 81 for (Suggestion expectedSuggestion : iterable(expected)) { 84 for (Suggestion observedSuggestion : iterable(observed)) { 90 for (Suggestion observedSuggestion : iterable(observed)) { 98 public static Iterable<Suggestion> iterable(final SuggestionCursor cursor) { method in class:SuggestionCursorUtil 99 return new Iterable<Suggestion>() {
|