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

1 2 3 4 5 6 7 891011>>

  /sdk/chimpchat/src/com/android/chimpchat/core/
MultiSelectorText.java 26 import java.util.Collection;
46 * @return The collection of views that contain the given text
48 public Collection<IChimpView> getViews(ChimpManager manager) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlayTest.java 21 import java.util.Collection;
44 Collection<Rectangle> result = IncludeOverlay.subtractRectangles(rectangle, holes);
  /sdk/ide_common/src/com/android/ide/common/resources/
ResourceFile.java 25 import java.util.Collection;
77 public abstract Collection<ResourceType> getResourceTypes();
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
PrivateResourceDetector.java 29 import java.util.Collection;
60 public Collection<String> getApplicableAttributes() {
PxUsageDetector.java 29 import java.util.Collection;
67 public Collection<String> getApplicableAttributes() {
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
ArchiveInfo.java 23 import java.util.Collection;
112 public Collection<ArchiveInfo> getDependenciesFor() {
SdkUpdaterLogic.java 45 import java.util.Collection;
137 Collection<Archive> selectedArchives,
206 Collection<ArchiveInfo> archives,
392 * Always returns a non-null collection, which can be empty.
394 private Collection<Archive> findUpdates(
396 Collection<Package> remotePkgs,
454 Collection<ArchiveInfo> outArchives,
455 Collection<Archive> selectedArchives,
456 Collection<Package> remotePkgs,
478 // to the outArchives collection.
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeMultimap.java 27 import java.util.Collection;
113 super(new TreeMap<K, Collection<V>>(keyComparator));
128 * <p>Creates an empty {@code TreeSet} for a collection of values for one key.
130 * @return a new {@code TreeSet} containing a collection of values for one
167 @Override public SortedMap<K, Collection<V>> asMap() {
168 return (SortedMap<K, Collection<V>>) super.asMap();
191 setMap(new TreeMap<K, Collection<V>>(keyComparator));
ObjectArrays.java 22 import java.util.Collection;
114 * collection; the runtime type of the returned array is that of the specified
115 * array. If the collection fits in the specified array, it is returned
117 * specified array and the size of the specified collection.
119 * <p>If the collection fits in the specified array with room to spare (i.e.,
120 * the array has more elements than the collection), the element in the array
121 * immediately following the end of the collection is set to {@code null}.
122 * This is useful in determining the length of the collection <i>only</i> if
123 * the caller knows that the collection does not contain any null elements.
126 * collection's iterator
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 29 import java.util.Collection;
53 @Override public boolean addAll(Collection<? extends T> collection) {
54 return standardAddAll(collection);
65 @Override public boolean containsAll(Collection<?> collection) {
66 return standardContainsAll(collection);
73 @Override public boolean removeAll(Collection<?> collection) {
74 return standardRemoveAll(collection);
    [all...]
ForwardingSetTest.java 30 import java.util.Collection;
61 @Override public boolean addAll(Collection<? extends T> collection) {
62 return standardAddAll(collection);
73 @Override public boolean containsAll(Collection<?> collection) {
74 return standardContainsAll(collection);
81 @Override public boolean removeAll(Collection<?> collection) {
82 return standardRemoveAll(collection);
    [all...]
ForwardingSortedSetTest.java 29 import java.util.Collection;
60 @Override public boolean addAll(Collection<? extends T> collection) {
61 return standardAddAll(collection);
72 @Override public boolean containsAll(Collection<?> collection) {
73 return standardContainsAll(collection);
80 @Override public boolean removeAll(Collection<?> collection) {
81 return standardRemoveAll(collection);
    [all...]
SynchronizedSetTest.java 24 import java.util.Collection;
86 @Override public boolean addAll(Collection<? extends E> c) {
101 @Override public boolean containsAll(Collection<?> c) {
118 @Override public boolean removeAll(Collection<?> c) {
123 @Override public boolean retainAll(Collection<?> c) {
AbstractImmutableSetTest.java 32 import java.util.Collection;
57 protected abstract Set<String> copyOf(Collection<String> elements);
139 Collection<String> c = MinimalCollection.<String>of();
146 Collection<String> c = MinimalCollection.of("a");
152 Collection<String> c = MinimalCollection.of("a", "a", "a");
158 Collection<String> c = MinimalCollection.of("a", "b", "a");
166 Collection<String> c = MinimalCollection.of("a", null, "b");
234 Collection<String> c = of();
240 Collection<String> c = of("a");
246 Collection<String> c = of("a", "b", "c")
    [all...]
SynchronizedMultimapTest.java 23 import java.util.Collection;
93 @Override public Collection<V> get(@Nullable K key) {
95 /* TODO: verify that the Collection is also synchronized? */
115 @Override public Collection<V> replaceValues(@Nullable K key,
127 @Override public Collection<V> removeAll(@Nullable Object key) {
149 @Override public Collection<V> values() {
151 /* TODO: verify that the Collection is also synchronized? */
155 @Override public Collection<Map.Entry<K, V>> entries() {
157 /* TODO: verify that the Collection is also synchronized? */
161 @Override public Map<K, Collection<V>> asMap()
    [all...]
LinkedHashMultimapTest.java 31 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<Integer>>>(6, MODIFIABLE, set
    [all...]
MapsTransformValuesUnmodifiableIteratorTest.java 24 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<?> expectedValues = expected.values()
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
Detector.java 31 import java.util.Collection;
247 * @return a collection of elements, or null, or the special
252 Collection<String> getApplicableElements();
262 * @return a collection of attributes, or null, or the special
267 Collection<String> getApplicableAttributes();
270 * Special marker collection returned by {@link #getApplicableElements()} or
407 public Collection<String> getApplicableElements() {
413 public Collection<String> getApplicableAttributes() {
  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 30 import java.util.Collection;
54 private static final Collection<ProcessError> mAsyncErrors =
100 final Collection<ProcessError> errProcs = runOneActivity(app);
136 * A method to run the specified Activity and return a {@link Collection} of the Activities that
142 public Collection<ProcessError> runOneActivity(ResolveInfo app) {
152 final Collection<ProcessError> preErrProcs =
174 final Collection<ProcessError> errProcs =
255 * {@see reportListContents(Collection<ProcessErrorStateInfo>)}.
257 static String reportWrappedListContents(Collection<ProcessError> errList) {
271 private static String reportListContents(Collection<ProcessErrorStateInfo> errList)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactorySpiTest.java 33 import java.util.Collection;
93 Collection col = certFactorySpi
95 assertNull("Not null Collection", col);
110 Collection colCRL = certFactorySpi
161 Collection col = certFactorySpi
231 Collection col = certFactorySpi
266 public Collection engineGenerateCertificates(InputStream inStream)
281 public Collection engineGenerateCRLs(InputStream inStream)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
UnmodifiableCollectionTests.java 32 import java.util.Collection;
98 * Verifies that a collection is immutable.
100 * <p>A collection is considered immutable if:
105 * collection throw UnsupportedOperationException when those mutators
109 * @param collection the presumed-immutable collection
111 * {@code collection}. {@code collection} may or may not have {@code
115 Collection<E> collection, E sampleElement)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactorySpiTest.java 39 import java.util.Collection;
85 Collection<? extends Certificate> col = certFactorySpi.engineGenerateCertificates(bais);
86 assertNull("Not null Collection", col);
101 Collection<? extends CRL> colCRL = certFactorySpi.engineGenerateCRLs(bais);
151 Collection<? extends Certificate> col = certFactorySpi
167 Collection<? extends CRL> colcrl = certFactorySpi.engineGenerateCRLs(dis);
221 Collection<? extends Certificate> col = certFactorySpi
237 Collection<? extends CRL> colcrl = certFactorySpi.engineGenerateCRLs(dis);
404 public Collection engineGenerateCertificates(InputStream inStream)
420 public Collection engineGenerateCRLs(InputStream inStream
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractCollectionTestSuiteBuilder.java 38 import java.util.Collection;
43 * Abstract superclass of all test-suite builders for collection interfaces.
50 B, TestCollectionGenerator<E>, Collection<E>, E> {
74 ?, ? extends OneSizeTestContainerGenerator<Collection<E>, E>>
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListEqualsTester.java 26 import java.util.Collection;
66 collection = getSubjectGenerator().create(elements.toArray());
75 Collection<E> fewerElements = getSampleElements(getNumElements() - 1);
81 Collection<E> moreElements = getSampleElements(getNumElements() + 1);
  /frameworks/base/core/java/android/net/
DhcpInfoInternal.java 25 import java.util.Collection;
49 private Collection<RouteInfo> mRoutes;
59 public Collection<RouteInfo> getRoutes() {

Completed in 586 milliseconds

1 2 3 4 5 6 7 891011>>