HomeSort by relevance Sort by last modified time
    Searched full:collection (Results 151 - 175 of 2355) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Mms/src/com/android/mms/model/
SlideModel.java 32 import java.util.Collection;
70 * Create a SlideModel with exist media collection.
73 * @param mediaList The exist media collection.
281 public boolean addAll(Collection<? extends MediaModel> collection) {
312 public boolean containsAll(Collection<?> collection) {
313 return mMedia.containsAll(collection);
333 public boolean removeAll(Collection<?> collection) {
    [all...]
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 65 // provide the views for this collection.
74 // The empty view is displayed when the collection has no items. It should be a sibling
75 // of the collection view.
78 // Here we setup the a pending intent template. Individuals items of a collection
79 // cannot setup their own pending intents, instead, the collection as a whole can
  /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>();
  /external/chromium/chrome/browser/notifications/
notification_ui_manager.h 36 // Creates an initialized UI manager with a new balloon collection
44 // Initializes the UI manager with a balloon collection; this object
45 // takes ownership of the balloon collection.
65 // Returns balloon collection.
100 // An owned pointer to the collection of active balloons.
  /external/guava/src/com/google/common/collect/
ListMultimap.java 21 import java.util.Collection;
45 * {@link java.util.Collection} specified in the {@link Multimap} interface.
54 * {@link java.util.Collection} specified in the {@link Multimap} interface.
63 * {@link java.util.Collection} specified in the {@link Multimap} interface.
73 Map<K, Collection<V>> asMap();
ImmutableList.java 25 import java.util.Collection;
40 * separate collection that can still change, an instance of {@code
206 * {@code elements} is a {@link Collection}, this method behaves exactly as
207 * {@link #copyOf(Collection)}; otherwise, it behaves exactly as {@code
215 return (elements instanceof Collection)
216 ? copyOf((Collection<? extends E>) elements)
234 * or concurrent collection that is currently being modified by another
240 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) {
267 Collection<? extends E> collection) {
439 Collection<?> collection = (Collection<?>) elements; local
    [all...]
ConstrainedMap.java 22 import java.util.Collection;
90 final Collection<Entry<K, V>> entries;
92 ConstrainedEntries(Collection<Entry<K, V>> entries,
97 @Override protected Collection<Entry<K, V>> delegate() {
124 @Override public boolean containsAll(Collection<?> c) {
130 @Override public boolean removeAll(Collection<?> c) {
133 @Override public boolean retainAll(Collection<?> c) {
HashMultimap.java 26 import java.util.Collection;
90 super(new HashMap<K, Collection<V>>());
94 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
100 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(
108 * <p>Creates an empty {@code HashSet} for a collection of values for one key.
110 * @return a new {@code HashSet} containing a collection of values for one key
132 Map<K, Collection<V>> map = Maps.newHashMapWithExpectedSize(distinctKeys);
  /external/v8/src/
func-name-inferrer.h 53 // Returns whether we have entered name collection state.
59 // Enters name collection state.
64 // Pushes an encountered name onto names stack when in collection state.
76 // Infers a function name and leaves names collection state.
84 // Infers a function name and leaves names collection state.
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.util.concurrent.AbstractExecutorService.html 86 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_removed(java.util.Collection<java.util.concurrent.Callable<T>>)"></A>
87 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;invokeAll(<code>Collection&lt;Callable&lt;T&gt;&gt;</code>)</nobr>
93 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_removed(java.util.Collection<java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit)"></A>
94 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;invokeAll(<code>Collection&lt;Callable&lt;T&gt;&gt;,</nobr> long<nobr>,</nobr> TimeUnit<nobr><nobr></code>)</nobr>
100 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAny_removed(java.util.Collection<java.util.concurrent.Callable<T>>)"></A>
101 <nobr><code>T</code>&nbsp;invokeAny(<code>Collection&lt;Callable&lt;T&gt;&gt;</code>)</nobr>
107 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAny_removed(java.util.Collection<java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit)"></A>
108 <nobr><code>T</code>&nbsp;invokeAny(<code>Collection&lt;Callable&lt;T&gt;&gt;,</nobr> long<nobr>,</nobr> TimeUnit<nobr><nobr></code>)</nobr>
122 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_added(java.util.Collection<? extends java.util.concurrent.Callable<T>>)"></A>
123 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/AbstractExecutorService.html#invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>)" target="_top"><code>invokeAll</code></A>(<code>Colle (…)
    [all...]
  /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>();
  /libcore/luni/src/main/java/java/util/
LinkedList.java 252 * elements contained in the specified {@code collection}. The order of the
254 * iteration order of {@code collection}.
256 * @param collection
257 * the collection of elements to add.
259 public LinkedList(Collection<? extends E> collection) {
261 addAll(collection);
324 * Inserts the objects in the specified collection at the specified location
326 * returned from the collection's iterator.
330 * @param collection
    [all...]
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})
  /libcore/luni/src/test/java/tests/api/java/util/
ArrayListTest.java 21 import java.util.Collection;
67 * java.util.ArrayList#ArrayList(java.util.Collection)
70 // Test for method java.util.ArrayList(java.util.Collection)
72 assertTrue("arrayList created from collection has incorrect size", al
76 "arrayList created from collection has incorrect elements",
132 * java.util.ArrayList#addAll(int, java.util.Collection)
136 // java.util.Collection)
194 // * java.util.ArrayList#addAll(int, java.util.Collection)
200 // obj.addAll((int) -1, (Collection) null);
208 * java.util.ArrayList#addAll(java.util.Collection)
605 ArrayList collection = new ArrayList(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 21 import java.util.Collection;
75 * @tests java.util.ArrayList#ArrayList(java.util.Collection)
78 // Test for method java.util.ArrayList(java.util.Collection)
80 assertTrue("arrayList created from collection has incorrect size", al
84 "arrayList created from collection has incorrect elements",
90 Collection<String> collection = shrinksOnSize("A", "B", "C", "D"); local
91 ArrayList<String> list = new ArrayList<String>(collection);
189 * @tests java.util.ArrayList#addAll(int, java.util.Collection)
193 // java.util.Collection)
879 ArrayList collection = new ArrayList(); local
    [all...]
  /external/guava/javadoc/com/google/common/collect/
TreeMultiset.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multiset.html" title="interface in com.google.common.collect">Multiset</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;E&gt;</DD>
115 resulting multiset will violate the <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util"><CODE>Collection</CODE></A> contract, which it is
177 <TD><CODE><B><A HREF="../../../../com/google/common/collect/TreeMultiset.html#addAll(java.util.Collection)">addAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;? extends E&gt;&nbsp;elementsToAdd)</CODE>
201 <TD><CODE><B><A HREF="../../../../com/google/common/collect/TreeMultiset.html#containsAll(java.util.Collection)">containsAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;?&gt;&nbsp;elements)</CODE
    [all...]
EnumMultiset.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multiset.html" title="interface in com.google.common.collect">Multiset</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;E&gt;</DD>
169 <TD><CODE><B><A HREF="../../../../com/google/common/collect/EnumMultiset.html#addAll(java.util.Collection)">addAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;? extends E&gt;&nbsp;elementsToAdd)</CODE>
193 <TD><CODE><B><A HREF="../../../../com/google/common/collect/EnumMultiset.html#containsAll(java.util.Collection)">containsAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;?&gt;&nbsp;elements)</CODE>
197 each element in the specified collection.</TD>
313 <TD><CODE><B><A HREF="../../../../com/google/common/collect/EnumMultiset.html#removeAll(java.util.Collection)">removeAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-ex (…)
    [all...]
HashMultiset.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multiset.html" title="interface in com.google.common.collect">Multiset</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;E&gt;</DD>
169 <TD><CODE><B><A HREF="../../../../com/google/common/collect/HashMultiset.html#addAll(java.util.Collection)">addAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;? extends E&gt;&nbsp;elementsToAdd)</CODE>
193 <TD><CODE><B><A HREF="../../../../com/google/common/collect/HashMultiset.html#containsAll(java.util.Collection)">containsAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;?&gt;&nbsp;elements)</CODE>
197 each element in the specified collection.</TD>
326 <TD><CODE><B><A HREF="../../../../com/google/common/collect/HashMultiset.html#removeAll(java.util.Collection)">removeAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-ex (…)
    [all...]
LinkedHashMultiset.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multiset.html" title="interface in com.google.common.collect">Multiset</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A>, <A HREF="http://java.sun.com/javase/6/docs/api/java/lang/Iterable.html?is-external=true" title="class or interface in java.lang">Iterable</A>&lt;E&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;E&gt;</DD>
174 <TD><CODE><B><A HREF="../../../../com/google/common/collect/LinkedHashMultiset.html#addAll(java.util.Collection)">addAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;? extends E&gt;&nbsp;elementsToAdd)</CODE>
198 <TD><CODE><B><A HREF="../../../../com/google/common/collect/LinkedHashMultiset.html#containsAll(java.util.Collection)">containsAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-external=true" title="class or interface in java.util">Collection</A>&lt;?&gt;&nbsp;elements)</CODE>
202 each element in the specified collection.</TD>
331 <TD><CODE><B><A HREF="../../../../com/google/common/collect/LinkedHashMultiset.html#removeAll(java.util.Collection)">removeAll</A></B>(<A HREF="http://java.sun.com/javase/6/docs/api/java/util/Collection.html?is-ex (…)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 519 public boolean addAll(Collection<? extends HDR> collection) {
520 return this.hlist.addAll(collection);
523 public boolean addAll(int index, Collection<? extends HDR> collection) {
524 return this.hlist.addAll(index, collection);
528 public boolean containsAll(Collection<?> collection) {
529 return this.hlist.containsAll(collection);
613 * @see List#removeAll(java.util.Collection)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
HashMap.h 350 void deleteAllPairSeconds(HashTableType& collection)
353 iterator end = collection.end();
354 for (iterator it = collection.begin(); it != end; ++it)
359 inline void deleteAllValues(const HashMap<T, U, V, W, X>& collection)
361 deleteAllPairSeconds<typename HashMap<T, U, V, W, X>::MappedType>(collection);
365 void deleteAllPairFirsts(HashTableType& collection)
368 iterator end = collection.end();
369 for (iterator it = collection.begin(); it != end; ++it)
374 inline void deleteAllKeys(const HashMap<T, U, V, W, X>& collection)
376 deleteAllPairFirsts<typename HashMap<T, U, V, W, X>::KeyType>(collection);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CertificateFactorySpi.java 21 import java.util.Collection;
54 * Generates and initializes a collection of certificates from the provided
59 * @return a collection of certificates.
63 public abstract Collection<? extends Certificate>
80 * Generates and initializes a collection of <i>Certificate Revocation
85 * @return a collection of CRLs.
89 public abstract Collection<? extends CRL>
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerOptions.java 21 import java.util.Collection;
34 private final Collection<File> plugins;
35 private final Collection<String> arguments;
39 Level logLevel, Collection<File> plugins, Collection<String> arguments) {
65 public Collection<File> getPlugins() {
69 public Collection<String> getArguments() {
  /cts/tools/host/src/com/android/cts/
TestSuite.java 21 import java.util.Collection;
31 private Collection<TestCase> mTestCases;
34 private Collection<TestSuite> mSubSuites;
91 public Collection<TestCase> getTestCases() {
118 public Collection<TestSuite> getSubSuites() {
127 public Collection<TestSuite> getAllSuites() {
128 Collection<TestSuite> testSuites = new ArrayList<TestSuite>();
207 public Collection<Test> getTests() {
225 public Collection<TestCase> getAllTestCases() {

Completed in 1568 milliseconds

1 2 3 4 5 67 8 91011>>