Searched refs:Collection (Results 51 - 75 of 407) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DFilters.java36 import java.util.Collection;
60 public static <T> Filter<T> in( Collection<? extends T> collection )
80 public static <T> Filter<T> notIn( Collection<? extends T> collection )
130 private Collection<? extends T> collection;
132 public InFilter( Collection<? extends T> collection )
H A DServer.java35 import java.util.Collection;
131 public Collection<HostedConnection> getConnections();
/external/guava/guava/src/com/google/common/collect/
H A DSynchronized.java28 import java.util.Collection;
95 private static <E> Collection<E> collection(
96 Collection<E> collection, @Nullable Object mutex) {
101 extends SynchronizedObject implements Collection<E> {
103 Collection<E> delegate, @Nullable Object mutex) {
108 @Override Collection<E> delegate() {
109 return (Collection<E>) super.delegate();
120 public boolean addAll(Collection<? extends E> c) {
141 public boolean containsAll(Collection<?> c) {
167 public boolean removeAll(Collection<
[all...]
H A DConstraints.java24 import java.util.Collection;
80 public static <E> Collection<E> constrainedCollection(
81 Collection<E> collection, Constraint<? super E> constraint) {
87 private final Collection<E> delegate;
91 Collection<E> delegate, Constraint<? super E> constraint) {
95 @Override protected Collection<E> delegate() {
102 @Override public boolean addAll(Collection<? extends E> elements) {
140 @Override public boolean addAll(Collection<? extends E> elements) {
189 @Override public boolean addAll(Collection<? extends E> elements) {
236 @Override public boolean addAll(Collection<
[all...]
H A DListMultimap.java21 import java.util.Collection;
45 * {@link java.util.Collection} specified in the {@link Multimap} interface.
55 * {@link java.util.Collection} specified in the {@link Multimap} interface.
65 * {@link java.util.Collection} specified in the {@link Multimap} interface.
77 Map<K, Collection<V>> asMap();
H A DSetMultimap.java21 import java.util.Collection;
45 * method returns a {@link Set}, instead of the {@link java.util.Collection}
55 * method returns a {@link Set}, instead of the {@link java.util.Collection}
65 * method returns a {@link Set}, instead of the {@link java.util.Collection}
77 * method returns a {@link Set}, instead of the {@link java.util.Collection}
90 Map<K, Collection<V>> asMap();
H A DSortedSetMultimap.java21 import java.util.Collection;
59 * {@link java.util.Collection} specified in the {@link Multimap} interface.
69 * {@link java.util.Collection} specified in the {@link Multimap} interface.
80 * {@link java.util.Collection} specified in the {@link Multimap} interface.
102 Map<K, Collection<V>> asMap();
H A DAbstractListMultimap.java21 import java.util.Collection;
45 protected AbstractListMultimap(Map<K, Collection<V>> map) {
58 * {@link Collection} specified in the {@link Multimap} interface.
69 * {@link Collection} specified in the {@link Multimap} interface.
80 * {@link Collection} specified in the {@link Multimap} interface.
104 @Override public Map<K, Collection<V>> asMap() {
H A DAbstractSetMultimap.java21 import java.util.Collection;
43 protected AbstractSetMultimap(Map<K, Collection<V>> map) {
55 * method returns a {@link Set}, instead of the {@link Collection} specified
66 * method returns a {@link Set}, instead of the {@link Collection} specified
77 * method returns a {@link Set}, instead of the {@link Collection} specified
88 * method returns a {@link Set}, instead of the {@link Collection} specified
104 @Override public Map<K, Collection<V>> asMap() {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSynchronized.java25 import java.util.Collection;
82 private static <E> Collection<E> collection(
83 Collection<E> collection, @Nullable Object mutex) {
88 extends SynchronizedObject implements Collection<E> {
90 Collection<E> delegate, @Nullable Object mutex) {
95 @Override Collection<E> delegate() {
96 return (Collection<E>) super.delegate();
107 public boolean addAll(Collection<? extends E> c) {
128 public boolean containsAll(Collection<?> c) {
154 public boolean removeAll(Collection<
[all...]
H A DLinkedHashMultimap.java24 import java.util.Collection;
79 transient Collection<Map.Entry<K, V>> linkedEntries;
118 super(new LinkedHashMap<K, Collection<V>>());
123 super(new LinkedHashMap<K, Collection<V>>(expectedKeys));
132 super(new LinkedHashMap<K, Collection<V>>(
162 @Override Collection<V> createCollection(@Nullable K key) {
183 <E> Collection<Map.Entry<K, E>> createEntries(Collection<E> values) {
185 Collection<Map.Entry<K, E>> entries
201 @Override public boolean addAll(Collection<
[all...]
H A DArrayListMultimap.java25 import java.util.Collection;
98 super(new HashMap<K, Collection<V>>());
103 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
128 for (Collection<V> collection : backingMap().values()) {
H A DTreeMultimap.java23 import java.util.Collection;
109 super(new TreeMap<K, Collection<V>>(keyComparator));
163 @Override public SortedMap<K, Collection<V>> asMap() {
164 return (SortedMap<K, Collection<V>>) super.asMap();
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractSetMultimapTest.java23 import java.util.Collection;
62 Map<String, Collection<Integer>> map = multimap.asMap();
64 Map<String, Collection<Integer>> equalMap = Maps.newHashMap();
71 Map<String, Collection<Integer>> unequalMap = Maps.newHashMap();
82 Set<Map.Entry<String, Collection<Integer>>> set
85 Iterator<Map.Entry<String, Collection<Integer>>> i = set.iterator();
86 Map.Entry<String, Collection<Integer>> expected =
88 "foo", (Collection<Integer>) ImmutableSet.of(1, 3));
89 Map.Entry<String, Collection<Integer>> entry = i.next();
106 Collection<Collectio
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractContainerTester.java21 import java.util.Collection;
26 * Base class for testers of classes (including {@link Collection}
51 protected abstract Collection<E> actualContents();
82 * @see #expectContents(java.util.Collection)
108 protected void expectContents(Collection<E> expected) {
119 * {@link #expectContents(java.util.Collection)}. In other words, for the
148 protected final void expectAdded(int index, Collection<E> elements) {
200 protected Collection<E> getSampleElements(int howMany) {
204 protected Collection<E> getSampleElements() {
H A DMinimalIterable.java20 import java.util.Collection;
35 * <li>or the usual, <i>robust</i> behavior, which all known {@link Collection}
66 public static <E> MinimalIterable<E> from(final Collection<E> elements) {
H A DTestUnhashableCollectionGenerator.java21 import java.util.Collection;
32 TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
H A DTestContainerGenerator.java19 import java.util.Collection;
25 * elements. Such things include both {@link Collection} and {@link Map}; since
/external/openfst/src/include/fst/extensions/pdt/
H A Dcollection.h38 class Collection { class in namespace:fst
81 Collection() {} function in class:fst::Collection
111 DISALLOW_COPY_AND_ASSIGN(Collection);
114 template<class I, class T> const I Collection<I, T>::kNoNodeId = -1;
116 template <class I, class T> const size_t Collection<I, T>::kPrime = 7853;
118 template <class I, class T> std::tr1::hash<T> Collection<I, T>::hash_;
/external/apache-http/src/org/apache/http/impl/cookie/
H A DAbstractCookieSpec.java34 import java.util.Collection;
106 protected Collection<CookieAttributeHandler> getAttribHandlers() {
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapEqualsTester.java27 import java.util.Collection;
61 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
72 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
85 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
96 Collection<Map.Entry<K, V>> entries = getSampleEntries(getNumEntries() - 1);
108 Collection<Map.Entry<K, V>> fewerEntries
115 Collection<Map.Entry<K, V>> moreEntries
127 Collection<? extends Map.Entry<? extends K, ? extends V>> entries) {
/external/nist-sip/java/gov/nist/core/
H A DDuplicateNameValueList.java27 import java.util.Collection;
138 Collection nv1 = this.getNameValue(key);
139 Collection nv2 = (Collection) other.nameValueMap.get(key);
152 Collection nv = this.getNameValue(name.toLowerCase());
163 public Collection getNameValue(String name) {
164 return (Collection) this.nameValueMap.get(name.toLowerCase());
253 public Collection<NameValue> values() {
/external/nist-sip/java/javax/sip/
H A DSipStack.java3 import java.util.Collection;
24 Collection getDialogs();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java20 import java.util.Collection;
24 * @tests java.util.Collection
28 Collection<Integer> col; // must contain the Integers 0 to 99
34 public Support_CollectionTest(String p1, Collection<Integer> c) {
44 Collection<Integer> myCollection = new TreeSet<Integer>();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java21 import java.util.Collection;
45 Collection<? super E> c, int maxElements) {
49 @Override public int drainTo(Collection<? super E> c) {

Completed in 343 milliseconds

1234567891011>>