Searched refs:Collection (Results 126 - 150 of 407) sorted by relevance

1234567891011>>

/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListEqualsTester.java26 import java.util.Collection;
75 Collection<E> fewerElements = getSampleElements(getNumElements() - 1);
81 Collection<E> moreElements = getSampleElements(getNumElements() + 1);
H A DMapHashCodeTester.java26 import java.util.Collection;
63 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
/external/guava/guava-tests/test/com/google/common/collect/
H A DLinkedHashMultimapTest.java31 import java.util.Collection;
104 Iterator<Map.Entry<String, Collection<Integer>>> collectionIterator =
106 Map.Entry<String, Collection<Integer>> entry = collectionIterator.next();
322 Set<Entry<String, Collection<Integer>>> set = newLinkedHashSet(asList(
324 (Collection<Integer>) Sets.newHashSet(2, 3, 6)),
326 (Collection<Integer>) Sets.newHashSet(4, 5, 10, 11)),
328 (Collection<Integer>) Sets.newHashSet(7, 8)),
330 (Collection<Integer>) Sets.newHashSet(9)),
332 (Collection<Integer>) Sets.newHashSet(12, 13, 14))
334 new IteratorTester<Entry<String, Collection<Intege
[all...]
H A DMapsTransformValuesUnmodifiableIteratorTest.java24 import java.util.Collection;
65 @Override public boolean removeAll(Collection<?> c) {
68 @Override public boolean retainAll(Collection<?> c) {
74 @Override public Collection<V> values() {
76 @Override protected Collection<V> delegate() {
82 @Override public boolean removeAll(Collection<?> c) {
85 @Override public boolean retainAll(Collection<?> c) {
99 @Override public boolean removeAll(Collection<?> c) {
102 @Override public boolean retainAll(Collection<?> c) {
142 Collection<
[all...]
H A DLinkedListMultimapTest.java34 import java.util.Collection;
126 Collection<Integer> foos = map.get("foo");
196 Collection<Integer> values = map.values();
267 Iterator<Map.Entry<String, Collection<Integer>>> entries
269 Map.Entry<String, Collection<Integer>> entry = entries.next();
291 Collection<Map.Entry<String, Integer>> entries = multimap.entries();
309 Collection<Map.Entry<String, Integer>> entries = multimap.entries();
437 Set<Entry<String, Collection<Integer>>> set = Sets.newLinkedHashSet(asList(
439 (Collection<Integer>) asList(2, 3, 6)),
441 (Collection<Intege
[all...]
H A DCollections2Test.java39 import java.util.Collection;
89 @Override public Collection<String> create(String[] elements) {
111 @Override public Collection<String> create(String[] elements) {
131 @Override public Collection<String> create(String[] elements) {
153 @Override public Collection<String> create(String[] elements) {
175 @Override public Collection<String> create(String[] elements) {
200 Collection<String> filtered
221 Collection<String> filtered
270 Collection<String> filtered
290 Collection<Strin
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultiset.java25 import java.util.Collection;
116 @Override public boolean addAll(Collection<? extends E> elementsToAdd) {
120 @Override public boolean removeAll(Collection<?> elementsToRemove) {
124 @Override public boolean retainAll(Collection<?> elementsToRetain) {
H A DForwardingMultiset.java23 import java.util.Collection;
158 * A sensible definition of {@link #addAll(Collection)} in terms of {@link
160 * these methods, you may wish to override {@link #addAll(Collection)} to
166 Collection<? extends E> elementsToAdd) {
191 Collection<?> elementsToRemove) {
204 Collection<?> elementsToRetain) {
H A DImmutableMultimap.java27 import java.util.Collection;
124 super(new LinkedHashMap<K, Collection<V>>());
126 @Override Collection<V> createCollection() {
140 super(new TreeMap<K, Collection<V>>(keyComparator));
143 @Override Collection<V> createCollection() {
204 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
231 for (Entry<? extends K, ? extends Collection<? extends V>> entry
266 for (Collection<V> values : builderMultimap.asMap().values()) {
422 Collection<V> values = map.get(key);
433 for (Collection<
[all...]
H A DEmptyImmutableSortedSet.java21 import java.util.Collection;
74 @Override public boolean containsAll(Collection<?> targets) {
H A DImmutableEnumSet.java22 import java.util.Collection;
65 @Override public boolean containsAll(Collection<?> collection) {
H A DTable.java23 import java.util.Collection;
225 Collection<V> values();
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMapGenerators.java32 import java.util.Collection;
66 public Collection<String> create(Object... elements) {
86 extends TestUnhashableCollectionGenerator<Collection<UnhashableObject>> {
88 @Override public Collection<UnhashableObject> create(
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DCaps.java41 import java.util.Collection;
243 public static boolean supports(Collection<Caps> caps, Texture tex){
280 public static boolean supports(Collection<Caps> caps, FrameBuffer fb){
334 public static boolean supports(Collection<Caps> caps, Shader shader){
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableMultimap.java26 import java.util.Collection;
123 super(new LinkedHashMap<K, Collection<V>>());
125 @Override Collection<V> createCollection() {
139 super(new TreeMap<K, Collection<V>>(keyComparator));
142 @Override Collection<V> createCollection() {
203 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
230 for (Entry<? extends K, ? extends Collection<? extends V>> entry
265 for (Collection<V> values : builderMultimap.asMap().values()) {
412 Collection<V> values = map.get(key);
423 for (Collection<
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DDoubleKeyMap.java35 public Collection<Value> values(Key1 k1) {
53 public Collection<Value> values() {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DFieldIdsSection.java24 import java.util.Collection;
50 public Collection<? extends Item> items() {
H A DMethodIdsSection.java24 import java.util.Collection;
50 public Collection<? extends Item> items() {
H A DProtoIdsSection.java24 import java.util.Collection;
50 public Collection<? extends Item> items() {
H A DSection.java21 import java.util.Collection;
224 public abstract Collection<? extends Item> items();
/external/guava/guava-gwt/src/com/google/common/collect/
H A DMultimap_CustomFieldSerializerBase.java23 import java.util.Collection;
72 for (Map.Entry<?, ? extends Collection<?>> entry
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DTimeLine.java37 import java.util.Collection;
97 public Collection<KeyFrame> getAllKeyFrames() {
/external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
H A DUncachedOggStream.java38 import java.util.Collection;
121 public Collection<LogicalOggStream> getLogicalStreams() {
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DDummyMap.java3 import java.util.Collection;
77 public Collection<V> values() {
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractListeningExecutorService.java20 import java.util.Collection;
63 private <T> T doInvokeAny(Collection<? extends Callable<T>> tasks, boolean timed, long nanos)
132 @Override public <T> T invokeAny(Collection<? extends Callable<T>> tasks)
142 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
147 @Override public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
181 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)

Completed in 420 milliseconds

1234567891011>>