HomeSort by relevance Sort by last modified time
    Searched refs:Collection (Results 101 - 125 of 889) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultimap.java 24 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>>(
142 * <p>Creates an empty {@code LinkedHashSet} for a collection of values for
145 * @return a new {@code LinkedHashSet} containing a collection of values for
158 * @param key key to associate with values in the collection
159 * @return a new decorated {@code LinkedHashSet} containing a collection of
162 @Override Collection<V> createCollection(@Nullable K key)
    [all...]
ArrayListMultimap.java 25 import java.util.Collection;
98 super(new HashMap<K, Collection<V>>());
103 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
117 * Creates a new, empty {@code ArrayList} to hold the collection of values for
128 for (Collection<V> collection : backingMap().values()) {
129 ArrayList<V> arrayList = (ArrayList<V>) collection;
TreeMultimap.java 23 import java.util.Collection;
109 super(new TreeMap<K, Collection<V>>(keyComparator));
124 * <p>Creates an empty {@code TreeSet} for a collection of values for one key.
126 * @return a new {@code TreeSet} containing a collection of values for one
163 @Override public SortedMap<K, Collection<V>> asMap() {
164 return (SortedMap<K, Collection<V>>) super.asMap();
  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.java 34 import java.util.Collection;
106 protected Collection<CookieAttributeHandler> getAttribHandlers() {
  /external/guava/guava/src/com/google/common/collect/
ListMultimap.java 21 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();
SetMultimap.java 21 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();
SortedSetMultimap.java 21 import java.util.Collection;
50 * Returns a collection view of all values associated with a key. If no
51 * mappings in the multimap have the provided key, an empty collection is
54 * <p>Changes to the returned collection will update the underlying multimap,
59 * {@link java.util.Collection} specified in the {@link Multimap} interface.
69 * {@link java.util.Collection} specified in the {@link Multimap} interface.
75 * Stores a collection of values with the same key, replacing any existing
80 * {@link java.util.Collection} specified in the {@link Multimap} interface.
95 * live collection. When passed a key that is not present, however, {@code
96 * asMap().get(Object)} returns {@code null} instead of an empty collection
    [all...]
AbstractListMultimap.java 21 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() {
AbstractSetMultimap.java 21 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-testlib/src/com/google/common/collect/testing/
MinimalIterable.java 20 import java.util.Collection;
35 * <li>or the usual, <i>robust</i> behavior, which all known {@link Collection}
62 * The elements are copied out of the source collection at the time this
66 public static <E> MinimalIterable<E> from(final Collection<E> elements) {
TestUnhashableCollectionGenerator.java 21 import java.util.Collection;
32 TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
50 * Creates a new collection containing the given elements; implement this
TestContainerGenerator.java 19 import java.util.Collection;
25 * elements. Such things include both {@link Collection} and {@link Map}; since
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapEqualsTester.java 27 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/jmonkeyengine/engine/src/networking/com/jme3/network/
Server.java 35 import java.util.Collection;
129 * Retrieves a read-only collection of all currently connected connections.
131 public Collection<HostedConnection> getConnections();
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 27 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/
SipStack.java 3 import java.util.Collection;
24 Collection getDialogs();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSourceResult.java 21 import java.util.Collection;
70 public Collection<String> getExtraColumns() {
SuggestionCursorWrapper.java 21 import java.util.Collection;
80 public Collection<String> getExtraColumns() {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 20 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>();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralNames.java 26 import java.util.Collection;
79 * Returns the collection of pairs: (Integer (tag), Object (name value))*
81 public Collection<List<?>> getPairsList() {
82 Collection<List<?>> result = new ArrayList<List<?>>();
129 @Override public Collection getValues(Object object) {
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 20 import java.util.Collection;
24 * java.util.Collection
27 Collection<Integer> col; // must contain the Integers 0 to 99
33 public Support_CollectionTest(String p1, Collection<Integer> c) {
43 Collection<Integer> myCollection = new TreeSet<Integer>();
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestSuite.java 19 import java.util.Collection;
53 public Collection<TestSuite> getSuites() {
61 public Collection<TestCase> getCases() {
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 21 import java.util.Collection;
28 * modify the behavior of the backing collection as desired per the <a
33 * @param <E> the type of elements held in this collection
45 Collection<? super E> c, int maxElements) {
49 @Override public int drainTo(Collection<? super E> c) {
  /external/guava/guava-tests/test/com/google/common/collect/
ForMapMultimapAsMapImplementsMapTest.java 22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
44 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
MultimapsFilterEntriesAsMapTest.java 22 import java.util.Collection;
53 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
58 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {

Completed in 416 milliseconds

1 2 3 45 6 7 8 91011>>