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

1 2 3 4 5 6 7 891011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertStoreCollectionSpi.java 13 import java.util.Collection;
34 public Collection engineGetCertificates(
70 public Collection engineGetCRLs(
  /external/chromium_org/tools/clang/blink_gc_plugin/
Edge.cpp 14 bool Collection::NeedsFinalization() { return info_->NeedsFinalization(); }
23 void RecursiveEdgeVisitor::AtCollection(Collection*) {}
70 void RecursiveEdgeVisitor::VisitCollection(Collection* e) {
  /external/droiddriver/src/com/google/android/droiddriver/base/
DefaultPoller.java 26 import java.util.Collection;
33 private final Collection<TimeoutListener> timeoutListeners = new LinkedList<TimeoutListener>();
34 private final Collection<PollingListener> pollingListeners = new LinkedList<PollingListener>();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ObjectArrays.java 21 import java.util.Collection;
87 * collection; the runtime type of the returned array is that of the specified
88 * array. If the collection fits in the specified array, it is returned
90 * specified array and the size of the specified collection.
92 * <p>If the collection fits in the specified array with room to spare (i.e.,
93 * the array has more elements than the collection), the element in the array
94 * immediately following the end of the collection is set to {@code null}.
95 * This is useful in determining the length of the collection <i>only</i> if
96 * the caller knows that the collection does not contain any null elements.
99 * collection's iterator
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeGenerator.java 23 import java.util.Collection;
27 * Generator for collection of a particular size.
66 Collection<E> elements = getSampleElements(
72 public Collection<E> getSampleElements(int howMany) {
TestsForSetsInJavaUtil.java 28 import java.util.Collection;
70 protected Collection<Method> suppressForEmptySet() {
73 protected Collection<Method> suppressForSingletonSet() {
76 protected Collection<Method> suppressForHashSet() {
79 protected Collection<Method> suppressForLinkedHashSet() {
82 protected Collection<Method> suppressForEnumSet() {
85 protected Collection<Method> suppressForTreeSetNatural() {
88 protected Collection<Method> suppressForTreeSetWithComparator() {
91 protected Collection<Method> suppressForCopyOnWriteArraySet() {
94 protected Collection<Method> suppressForUnmodifiableSet()
    [all...]
  /external/hamcrest/library/src/org/hamcrest/collection/
IsCollectionContaining.java 1 package org.hamcrest.collection;
10 import java.util.Collection;
20 public boolean matchesSafely(Iterable<T> collection) {
21 for (T item : collection) {
31 .appendText("a collection containing ")
47 Collection<Matcher<? extends Iterable<T>>> all
57 Collection<Matcher<? extends Iterable<T>>> all
  /external/junit/src/org/junit/internal/matchers/
IsCollectionContaining.java 7 import java.util.Collection;
22 public boolean matchesSafely(Iterable<T> collection) {
23 for (T item : collection) {
33 .appendText("a collection containing ")
49 Collection<Matcher<? extends Iterable<T>>> all
59 Collection<Matcher<? extends Iterable<T>>> all
  /external/objenesis/tck/test/org/objenesis/tck/
TCKTest.java 18 import java.util.Collection;
133 public void startTests(String platformDescription, Collection allCandidates,
134 Collection allInstantiators) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
MethodUtil.java 41 import java.util.Collection;
79 public static int getParameterRegisterCount(@Nonnull Collection<? extends CharSequence> parameterTypes,
103 public static String getShorty(Collection<? extends CharSequence> params, String returnType) {
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetentities.java 68 java.util.Collection expectedResult = new java.util.ArrayList();
75 java.util.Collection expectedResultSVG = new java.util.ArrayList();
84 java.util.Collection nameList = new java.util.ArrayList();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 33 import java.util.Collection;
75 public Collection engineGenerateCertificates(InputStream inStream)
91 public Collection engineGenerateCRLs(InputStream inStream)
  /libcore/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 20 import java.util.Collection;
29 Collection<Integer> col;
31 // must be a collection containing the Integers 0 to 99 (which will iterate
38 public Support_UnmodifiableCollectionTest(String p1, Collection<Integer> c) {
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
FolderList.java 8 import java.util.Collection;
24 private FolderList(Collection<Folder> in) {
56 * list-copy overhead of {@link #copyOf(Collection)} + {@link #toBlob()}.
82 public static FolderList copyOf(Collection<Folder> in) {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSourcePlexor.java 22 import java.util.Collection;
42 public Collection<AlbumData> findAlbums() {
56 protected Collection<ImageData> findImages(int howMany) {
  /development/tools/idegen/src/
Main.java 25 import java.util.Collection;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
MethodsWithGenericDebuggee.java 37 Object objectTestMethod(java.util.Collection stringCollection) {
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
LazyStringArrayList.java 36 import java.util.Collection;
118 public boolean addAll(Collection<? extends String> c) {
119 // The default implementation of AbstractCollection.addAll(Collection)
121 // addAll(int, Collection), which makes a special case for Collections
127 public boolean addAll(int index, Collection<? extends String> c) {
130 Collection<?> collection = c instanceof LazyStringList local
132 boolean ret = list.addAll(index, collection);
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelper.java 4 import java.util.Collection;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestUtil.java 7 import java.util.Collection;
16 public static void assertEquals(Collection<?> expected, Collection<?> actual) {
20 public static String stringify(Collection<?> collection) {
22 for (Object o : collection) {
  /frameworks/base/core/java/android/hardware/camera2/legacy/
RequestHolder.java 24 import java.util.Collection;
59 private final Collection<Long> mJpegSurfaceIds;
71 boolean repeating, Collection<Long> jpegSurfaceIds) {
206 * Returns a read-only collection of the surfaces targeted by the contained request.
208 public Collection<Surface> getHolderTargets() {
  /libcore/luni/src/main/java/java/util/
AbstractQueue.java 26 * Queue#peek}, {@link Queue#poll}, {@link Collection#size}, and
27 * {@link Collection#iterator}. Typically, additional methods will be
33 * @param <E> the type of elements held in this collection
55 * @return <tt>true</tt> (as specified by {@link Collection#add})
123 * Adds all of the elements in the specified collection to this
126 * this operation is undefined if the specified collection is
129 * <p>This implementation iterates over the specified collection,
137 * @param c collection containing elements to be added to this queue
140 * collection prevents it from being added to this queue
141 * @throws NullPointerException if the specified collection contains
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
ImportTask.java 29 import java.util.Collection;
47 void onImportFinish(Collection<IngestObjectInfo> objectsNotImported, int visitedCount);
54 private Collection<IngestObjectInfo> mObjectsToImport;
58 public ImportTask(MtpDevice device, Collection<IngestObjectInfo> objectsToImport,
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 23 import java.util.Collection;
142 * java.util.Collections#synchronizedCollection(java.util.Collection)
207 * java.util.Collections#unmodifiableCollection(java.util.Collection)
272 * java.util.Collections#frequency(java.util.Collection,Object)
353 class Mock_Collection implements Collection {
358 public boolean addAll(Collection c) {
369 public boolean containsAll(Collection c) {
385 public boolean removeAll(Collection c) {
389 public boolean retainAll(Collection c) {
406 class Mock_WrongCollection implements Collection {
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMultimapTest.java 30 import java.util.Collection;
104 for (Entry<String, Collection<Integer>> entry2 :
210 Collection<Integer> values = multimap.get("bar");
217 Collection<Integer> values = multimap.get("bar");
226 Collection<Integer> values = multimap.get("foo");
235 Collection<Integer> values = multimap.get(nullKey());
265 Collection<Integer> collection = Lists.newArrayList(1, 3); local
266 multimap.putAll("foo", collection);
271 Collection<Integer> emptyCollection = Lists.newArrayList()
278 Collection<Integer> collection = Lists.newArrayList(1, nullValue()); local
279 multimap.putAll(nullKey(), collection); local
286 Collection<Integer> collection = Lists.newArrayList(); local
980 Collection<Integer> collection = Lists.newArrayList(1, 3); local
    [all...]

Completed in 872 milliseconds

1 2 3 4 5 6 7 891011>>