HomeSort by relevance Sort by last modified time
    Searched refs:Collection (Results 26 - 50 of 1145) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mockito/src/org/mockito/internal/configuration/injection/filter/
MockCandidateFilter.java 8 import java.util.Collection;
13 Collection<Object> mocks,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
AnnotationSetSection.java 37 import java.util.Collection;
41 @Nonnull Collection<? extends AnnotationKey> getAnnotations(@Nonnull AnnotationSetKey key);
IndexSection.java 35 import java.util.Collection;
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
OffsetSection.java 35 import java.util.Collection;
40 @Nonnull Collection<? extends Map.Entry<? extends Key, Integer>> getItems();
TypeListSection.java 36 import java.util.Collection;
40 @Nonnull Collection<? extends TypeKey> getTypes(@Nullable TypeListKey key);
  /frameworks/testing/support/src/android/support/test/runner/lifecycle/
ActivityLifecycleMonitor.java 21 import java.util.Collection;
100 * for garbage collection on low memory situations may not return an instance of a particular
104 * @return a snapshot Collection of activities in the given stage. This collection may be empty.
107 Collection<Activity> getActivitiesInStage(Stage stage);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
IAndroidLaunchAction.java 21 import java.util.Collection;
36 boolean doLaunchAction(DelayedLaunchInfo info, Collection<IDevice> devices);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
TypeListPool.java 41 import java.util.Collection;
44 public class TypeListPool extends BaseNullableOffsetPool<Key<? extends Collection<? extends CharSequence>>>
45 implements TypeListSection<CharSequence, Key<? extends Collection<? extends CharSequence>>> {
52 public void intern(@Nonnull Collection<? extends CharSequence> types) {
54 Key<? extends Collection<? extends CharSequence>> key = new Key<Collection<? extends CharSequence>>(types);
65 public Collection<? extends CharSequence> getTypes(Key<? extends Collection<? extends CharSequence>> typesKey) {
72 @Override public int getNullableItemOffset(@Nullable Key<? extends Collection<? extends CharSequence>> key) {
80 public static class Key<TypeCollection extends Collection<? extends CharSequence>
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multimap.java 21 import java.util.Collection;
28 * A collection similar to a {@code Map}, but which may associate multiple
44 * return a collection that includes the value twice. In multimaps not
46 * key to the value, and {@code get} will return a collection that includes the
122 * Stores a collection of values with the same key.
141 * Stores a collection of values with the same key, replacing any existing
146 * @return the collection of replaced values, or an empty collection if no
147 * values were previously associated with the key. The collection
151 Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values)
    [all...]
ForwardingCollection.java 23 import java.util.Collection;
29 * A collection which forwards all its method calls to another collection.
31 * backing collection as desired per the <a
50 implements Collection<E> {
56 @Override protected abstract Collection<E> delegate();
69 public boolean removeAll(Collection<?> collection) {
70 return delegate().removeAll(collection);
94 public boolean containsAll(Collection<?> collection)
    [all...]
AbstractMultimap.java 28 import java.util.Collection;
46 * a multimap as a map that associates each key with a collection of values. All
51 * #createCollection()}, which creates an empty collection of values for a key.
56 * to create the collection of values for that key. The subclass should not call
65 * <p>Keys and values may be null, as long as the underlying collection classes
69 * allow duplicates. If the collection, such as a {@link Set}, does not support
72 * List} that allow duplicates, the collection will keep the existing key-value
92 * The map variable contains the collection of values associated with each
94 * contain any values for that key, a new collection generated by
95 * createCollection is added to the map. That same collection instanc
193 Collection<V> collection = map.get(key); local
201 Collection<V> collection = getOrCreateCollection(key); local
212 Collection<V> collection = map.get(key); local
222 Collection<V> collection = map.get(key); local
244 Collection<V> collection = getOrCreateCollection(key); local
283 Collection<V> collection = getOrCreateCollection(key); local
306 Collection<V> collection = map.remove(key); local
350 Collection<V> collection = map.get(key); local
910 Collection<V> collection = entry.getValue(); local
922 Collection<V> collection = subMap.remove(key); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableMultimapAsMapImplementsMapTest.java 22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
ImmutableSetMultimapAsMapImplementsMapTest.java 22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
UnmodifiableMultimapAsMapImplementsMapTest.java 22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
44 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingQueue.java 9 import java.util.Collection;
77 * the {@link java.util.Collection} interface. So, for example, it is
86 * <em>bulk</em> Collection operations {@code addAll},
149 * @param <E> the type of elements held in this collection
161 * @return {@code true} (as specified by {@link Collection#add})
277 * (<a href="../Collection.html#optional-restrictions">optional</a>)
279 * (<a href="../Collection.html#optional-restrictions">optional</a>)
292 * (<a href="../Collection.html#optional-restrictions">optional</a>)
294 * (<a href="../Collection.html#optional-restrictions">optional</a>)
300 * to the given collection. This operation may be mor
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
ValidatingSensorEventListener.java 23 import java.util.Collection;
33 private final Collection<ISensorVerification> mVerifications =
53 Collection<ISensorVerification> verifications) {
67 public ValidatingSensorEventListener(Collection<ISensorVerification> verifications) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ForwardingImmutableCollection.java 19 import java.util.Collection;
32 transient final Collection<E> delegate;
34 ForwardingImmutableCollection(Collection<E> delegate) {
46 @Override public boolean containsAll(Collection<?> targets) {
  /external/smack/src/org/jivesoftware/smackx/packet/
HeadersExtension.java 17 import java.util.Collection;
33 private Collection<Header> headers = Collections.EMPTY_LIST;
35 public HeadersExtension(Collection<Header> headerList)
41 public Collection<Header> getHeaders()
  /libcore/luni/src/main/java/java/util/
Queue.java 14 * A collection designed for holding elements prior to processing.
15 * Besides basic {@link java.util.Collection Collection} operations,
63 * java.util.Collection#add Collection.add} method, which can fail to
102 * @see java.util.Collection
112 * @param <E> the type of elements held in this collection
114 public interface Queue<E> extends Collection<E> {
122 * @return <tt>true</tt> (as specified by {@link Collection#add})
  /external/apache-http/src/org/apache/http/cookie/params/
CookieSpecParamBean.java 34 import java.util.Collection;
45 public void setDatePatterns (final Collection <String> patterns) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 5 import java.util.Collection;
34 * collection.
41 * @param unresolvedCritExts a <code>Collection</code> of OID strings
47 CertPath holderCertPath, Collection unresolvedCritExts)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeTestContainerGenerator.java 21 import java.util.Collection;
24 * The subject-generator interface accepted by Collection testers, for testing
25 * a Collection at one particular {@link CollectionSize}.
39 Collection<E> getSampleElements(int howMany);
  /libcore/luni/src/main/java/java/security/cert/
PKIXCertPathChecker.java 20 import java.util.Collection;
33 * {@link #check(Certificate, Collection) check} method will be called for each
109 public abstract void check(Certificate cert, Collection<String> unresolvedCritExts)
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursor.java 22 import java.util.Collection;
85 Collection<String> getExtraColumns();
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootsLoader.java 25 import java.util.Collection;
27 public class RootsLoader extends AsyncTaskLoader<Collection<RootInfo>> {
33 private Collection<RootInfo> mResult;
45 public final Collection<RootInfo> loadInBackground() {
50 public void deliverResult(Collection<RootInfo> result) {
54 Collection<RootInfo> oldResult = mResult;

Completed in 597 milliseconds

12 3 4 5 6 7 8 91011>>