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

<<11121314151617181920>>

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
IRemoteAndroidTestRunner.java 25 import java.util.Collection;
200 * Convenience method for {@link #run(Collection)}.
218 * @param listeners collection of listeners for test results
227 public void run(Collection<ITestRunListener> listeners)
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/heap/
NativeHeapSnapshot.java 23 import java.util.Collection;
50 protected long getTotalMemory(Collection<NativeAllocationInfo> heapSnapshot) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLCompositeProperty.java 19 import java.util.Collection;
42 public Collection<IGLProperty> getProperties() {
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
AccessibilityDetector.java 36 import java.util.Collection;
70 public Collection<String> getApplicableElements() {
HardcodedDebugModeDetector.java 35 import java.util.Collection;
81 public Collection<String> getApplicableAttributes() {
TextFieldDetector.java 35 import java.util.Collection;
71 public Collection<String> getApplicableElements() {
  /sdk/rule_api/src/com/android/ide/common/api/
IClientRulesEngine.java 24 import java.util.Collection;
182 void select(@NonNull Collection<INode> nodes);
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractListeningExecutorService.java 20 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)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java 20 import java.util.Collection;
47 public SafeTreeSet(Collection<? extends E> collection) {
48 this(new TreeSet<E>(collection));
70 @Override public boolean addAll(Collection<? extends E> collection) {
71 for (E e : collection) {
74 return delegate.addAll(collection);
98 @Override public boolean containsAll(Collection<?> c) {
159 @Override public boolean removeAll(Collection<?> c)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListTest.java 28 import java.util.Collection;
57 @Override public boolean addAll(Collection<? extends T> collection) {
58 return standardAddAll(collection);
69 @Override public boolean containsAll(Collection<?> collection) {
70 return standardContainsAll(collection);
77 @Override public boolean removeAll(Collection<?> collection) {
78 return standardRemoveAll(collection);
    [all...]
ImmutableMultisetTest.java 39 import java.util.Collection;
170 Collection<String> c = MinimalCollection.<String>of();
176 Collection<String> c = MinimalCollection.of("a");
182 Collection<String> c = MinimalCollection.of("a", "b", "a");
188 Collection<String> c = MinimalCollection.of("a", null, "b");
264 Collection<String> c = ImmutableMultiset.of();
269 Collection<String> c = ImmutableMultiset.of("a");
274 Collection<String> c = ImmutableMultiset.of("a", "b", "c");
348 builder.addAll((Collection<String>) null);
408 Collection<String> c = ImmutableMultiset.of()
    [all...]
ImmutableSortedMultisetTest.java 37 import java.util.Collection;
179 Collection<String> c = MinimalCollection.<String>of();
185 Collection<String> c = MinimalCollection.of("a");
191 Collection<String> c = MinimalCollection.of("a", "b", "a");
197 Collection<String> c = MinimalCollection.of("a", null, "b");
274 Collection<String> c = ImmutableSortedMultiset.of();
279 Collection<String> c = ImmutableSortedMultiset.of("a");
284 Collection<String> c = ImmutableSortedMultiset.of("a", "b", "c");
342 builder.addAll((Collection<String>) null);
405 Collection<String> c = ImmutableSortedMultiset.of()
    [all...]
MapConstraintsTest.java 32 import java.util.Collection;
257 Iterator<Collection<Integer>> iterator =
270 Map.Entry<String, Collection<Integer>> entry
283 Map.Entry<String, Collection<Integer>> entry
296 Map.Entry<String, Collection<Integer>> entry
309 Map.Entry<String, Collection<Integer>> entry
406 ((Collection<Integer>) constrained.asMap().values().toArray()[0])
429 new HashMap<String, Collection<Integer>>(), new QueueSupplier());
490 Map.Entry<String, Collection<Integer>> entry
491 = (Map.Entry<String, Collection<Integer>>
510 Collection<Integer> collection local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SafeArrayList.java 96 public SafeArrayList(Class<E> elementType, Collection<? extends E> c) {
195 public boolean containsAll(Collection<?> c) {
199 public boolean addAll(Collection<? extends E> c) {
205 public boolean addAll(int index, Collection<? extends E> c) {
211 public boolean removeAll(Collection<?> c) {
217 public boolean retainAll(Collection<?> c) {
336 sb.append( e == this ? "(this Collection)" : e );
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 37 import java.util.Collection;
80 public boolean updateWithRfc822Address(Collection<CharSequence> texts){
100 * @see #update(Collection, Collection, String)
105 public boolean updateWithAddress(Collection<String> addresses) {
150 * @see #update(Collection, Collection, String)
155 public boolean updateWithPhoneNumber(Collection<String> numbers) {
198 private boolean update(Collection<Long> contactIds, Collection<Long> dataIds, String type)
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestProvider.java 31 import java.util.Collection;
41 private final Map<String, Collection<ContentValues>>
42 mMimeTypeToExpectedContentValues = new HashMap<String, Collection<ContentValues>>();
47 final Collection<ContentValues> contentValuesCollection;
115 final Collection<ContentValues> contentValuesCollection =
159 for (Collection<ContentValues> contentValuesCollection :
  /libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java 24 import java.util.Collection;
45 // from issuerNames collection (above)
71 public void setIssuers(Collection<X500Principal> issuers) {
85 * <b>Do not use:</b> use {@link #setIssuers(Collection)} or one of
92 * The specified parameter {@code names} is a collection with an entry for
103 public void setIssuerNames(Collection<?> names) throws IOException {
276 public Collection<X500Principal> getIssuers() {
301 public Collection<Object> getIssuerNames() {
305 return (Collection<Object>) issuerNames.clone();
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 25 import java.util.Collection;
87 * Creates a new instance containing the elements of {@code collection}.
90 public CopyOnWriteArrayList(Collection<? extends E> collection) {
91 this((E[]) collection.toArray());
124 public boolean containsAll(Collection<?> collection) {
126 return containsAll(collection, snapshot, 0, snapshot.length);
129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
LinkedListMultimap.java 38 import java.util.Collection;
81 * {@code List}, instead of the {@code Collection} specified by the {@link
665 @Override public boolean removeAll(Collection<?> c) {
668 @Override public boolean retainAll(Collection<?> c) {
690 @Override public boolean removeAll(Collection<?> c) {
767 @Override public boolean removeAll(Collection<?> c) {
771 @Override public boolean retainAll(Collection<?> c) {
836 * <p>The iterator generated by the returned collection traverses the values
839 * List}, instead of the {@link Collection} specified in the {@link
918 * <p>The iterator generated by the returned collection traverses the entrie
    [all...]
ImmutableList.java 28 import java.util.Collection;
41 * separate collection that can still change, an instance of {@code
209 * {@code elements} is a {@link Collection}, this method behaves exactly as
210 * {@link #copyOf(Collection)}; otherwise, it behaves exactly as {@code
217 return (elements instanceof Collection)
236 * or concurrent collection that is currently being modified by another
241 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) {
277 Collection<? extends E> collection) {
278 Object[] elements = collection.toArray()
    [all...]
ImmutableSetMultimap.java 30 import java.util.Collection;
150 super(new LinkedHashMap<K, Collection<V>>());
152 @Override Collection<V> createCollection() {
166 super(new TreeMap<K, Collection<V>>(keyComparator));
169 @Override Collection<V> createCollection() {
224 Collection<V> collection = builderMultimap.get(checkNotNull(key)); local
226 collection.add(checkNotNull(value));
237 for (Entry<? extends K, ? extends Collection<? extends V>> entry
321 for (Entry<? extends K, ? extends Collection<? extends V>> entr
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedListMultimap.java 34 import java.util.Collection;
77 * {@code List}, instead of the {@code Collection} specified by the {@link
661 @Override public boolean removeAll(Collection<?> c) {
664 @Override public boolean retainAll(Collection<?> c) {
686 @Override public boolean removeAll(Collection<?> c) {
763 @Override public boolean removeAll(Collection<?> c) {
767 @Override public boolean retainAll(Collection<?> c) {
832 * <p>The iterator generated by the returned collection traverses the values
835 * List}, instead of the {@link Collection} specified in the {@link
914 * <p>The iterator generated by the returned collection traverses the entrie
    [all...]
  /libcore/luni/src/main/java/java/util/
Collections.java 29 * {@code Collection} classes.
155 @Override public Collection values() {
363 static class SynchronizedCollection<E> implements Collection<E>, Serializable {
365 final Collection<E> c;
368 SynchronizedCollection(Collection<E> collection) {
369 c = collection;
373 SynchronizedCollection(Collection<E> collection, Object mutex) {
374 c = collection;
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSCache.java 9 import java.util.Collection;
110 public Collection<List<? extends DNSEntry>> values() {
347 public synchronized Collection<DNSEntry> allValues() {
363 public synchronized Collection<? extends DNSEntry> getDNSEntryList(String name) {
364 Collection<? extends DNSEntry> entryList = this._getDNSEntryList(name);
373 private Collection<? extends DNSEntry> _getDNSEntryList(String name) {
386 Collection<? extends DNSEntry> entryList = this._getDNSEntryList(dnsEntry.getKey());
409 Collection<? extends DNSEntry> entryList = this._getDNSEntryList(name);
429 public synchronized Collection<? extends DNSEntry> getDNSEntryList(String name, DNSRecordType type, DNSRecordClass recordClass) {
430 Collection<? extends DNSEntry> entryList = this._getDNSEntryList(name)
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertStore2Test.java 19 import java.util.Collection;
216 Collection<? extends Certificate> certificates = certStore.getCertificates(null);
223 Collection<? extends Certificate> certificates = certStore.getCertificates(new MyCertSelector());
251 Collection<? extends CRL> ls = certStore.getCRLs(null);
258 Collection<? extends CRL> ls = certStore.getCRLs(new MyCRLSelector());
354 public Collection<? extends CRL> engineGetCRLs(CRLSelector selector)
366 public Collection<? extends Certificate> engineGetCertificates(

Completed in 1097 milliseconds

<<11121314151617181920>>