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

1 2 3 4 56 7 8 91011>>

  /external/guava/src/com/google/common/collect/
LinkedHashMultimap.java 26 import java.util.Collection;
81 transient Collection<Map.Entry<K, V>> linkedEntries;
120 super(new LinkedHashMap<K, Collection<V>>());
125 super(new LinkedHashMap<K, Collection<V>>(expectedKeys));
133 super(new LinkedHashMap<K, Collection<V>>(
143 * <p>Creates an empty {@code LinkedHashSet} for a collection of values for
146 * @return a new {@code LinkedHashSet} containing a collection of values for
159 * @param key key to associate with values in the collection
160 * @return a new decorated {@code LinkedHashSet} containing a collection of
163 @Override Collection<V> createCollection(@Nullable K key)
    [all...]
ArrayListMultimap.java 26 import java.util.Collection;
102 super(new HashMap<K, Collection<V>>());
107 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
121 * Creates a new, empty {@code ArrayList} to hold the collection of values for
132 for (Collection<V> collection : backingMap().values()) {
133 ArrayList<V> arrayList = (ArrayList<V>) collection;
154 Map<K, Collection<V>> map = Maps.newHashMapWithExpectedSize(distinctKeys);
  /libcore/dom/src/test/java/org/w3c/domts/
JUnitTestCaseAdapter.java 21 import java.util.Collection;
226 public void assertSize(DOMTestCase test, String assertID, int expectedSize, NodeList collection) {
227 assertEquals(assertID,expectedSize, collection.getLength());
230 public void assertSize(DOMTestCase test, String assertID, int expectedSize, NamedNodeMap collection) {
231 assertEquals(assertID, expectedSize, collection.getLength());
234 public void assertSize(DOMTestCase test, String assertID, int expectedSize, Collection collection) {
235 assertEquals(assertID, expectedSize, collection.size());
244 public void assertEqualsIgnoreCase(DOMTestCase test, String assertID, Collection expected, Collection actual)
    [all...]
  /external/guava/javadoc/com/google/common/collect/
ForwardingCollection.html 100 <DT><B>All Implemented Interfaces:</B> <DD><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>
107 <DT><PRE>public abstract class <B>ForwardingCollection&lt;E&gt;</B><DT>extends <A HREF="../../../../com/google/common/collect/ForwardingObject.html" title="class in com.google.common.collect">ForwardingObject</A><DT>implements <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;</DL>
111 A collection which forwards all its method calls to another collection.
113 the backing collection as desired per the <a
163 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ForwardingCollection.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 <A HREF="../../../../com/google/common/collect/ForwardingCollection.html" title=" (…)
    [all...]
  /libcore/luni/src/main/java/java/util/
Vector.java 104 * {@code collection}. The order of the elements in the new {@code Vector}
105 * is dependent on the iteration order of the seed collection.
107 * @param collection
108 * the collection of elements to add.
110 public Vector(Collection<? extends E> collection) {
111 this(collection.size(), 0);
112 Iterator<? extends E> it = collection.iterator();
161 * Inserts the objects in the specified collection at the specified location
163 * returned from the Collection iterator. The elements with an index equa
    [all...]
HashSet.java 68 * elements in the specified collection.
70 * @param collection
71 * the collection of elements to add.
73 public HashSet(Collection<? extends E> collection) {
74 this(new HashMap<E, HashSet<E>>(collection.size() < 6 ? 11 : collection
76 for (E e : collection) {
Map.java 233 * Returns a {@code Collection} of the values contained in this {@code Map}. The {@code Collection}
235 * {@code Collection} supports {@link Collection#remove}, {@link Collection#removeAll},
236 * {@link Collection#retainAll}, and {@link Collection#clear} operations,
237 * and it does not support {@link Collection#add} or {@link Collection#addAll} operations.
239 * This method returns a {@code Collection} which is the subclass o
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
DirectoryWalker.java 22 import java.util.Collection;
65 * protected boolean handleDirectory(File directory, int depth, Collection results) {
76 * protected void handleFile(File file, int depth, Collection results) {
206 * private void handleIsCancelled(File file, int depth, Collection results) {
210 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException {
234 * protected void handleFile(File file, int depth, Collection results) throws IOException {
242 * protected void handleCancelled(File startDirectory, Collection results, CancelException cancel) {
325 * @param results the collection of result objects, may be updated
329 protected final void walk(File startDirectory, Collection results) throws IOException {
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
ApiCoverage.java 19 import java.util.Collection;
37 public Collection<ApiPackage> getPackages() {
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestPackageResultTest.java 22 import java.util.Collection;
40 Collection<TestIdentifier> tests = pkgResult.getTestsWithStatus(
  /dalvik/dx/tests/118-find-usages/
run 26 echo "Collection.remove()"
27 dx --find-usages foo.dex "Ljava/util/Collection;" remove
  /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/bouncycastle/src/main/java/org/bouncycastle/x509/
X509Store.java 9 import java.util.Collection;
75 public Collection getMatches(Selector selector)
  /external/chromium/chrome/browser/ui/cocoa/applescript/
element_applescript.h 17 // collection.
29 // collection.
  /external/clang/test/SemaObjC/
foreach.m 43 NSObject<NSFastEnumeration>* collection = ((void*)0);
44 for (id thing in collection) { }
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 27 import java.util.Collection;
138 Collection nv1 = this.getNameValue(key);
139 Collection nv2 = (Collection) other.nameValueMap.get(key);
152 Collection nv = this.getNameValue(name.toLowerCase());
163 public Collection getNameValue(String name) {
164 return (Collection) this.nameValueMap.get(name.toLowerCase());
253 public Collection<NameValue> values() {
MultiMap.java 23 * Instead of returning an Object, it returns a Collection.
25 * and then a Object get( key ); will return you a Collection
  /external/webkit/LayoutTests/fast/dom/getElementsByClassName/
011.xml 14 var collection = document.getElementsByClassName("a"),
16 t(collection, [test[0], test[1]])
  /external/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 198 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, VectorType& vector)
202 vector.resize(collection.size());
204 iterator it = collection.begin();
205 iterator end = collection.end();
211 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, Vector<Value>& vector)
215 vector.resize(collection.size());
217 iterator it = collection.begin();
218 iterator end = collection.end();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSourceResult.java 21 import java.util.Collection;
70 public Collection<String> getExtraColumns() {
SuggestionCursorWrapper.java 21 import java.util.Collection;
80 public Collection<String> getExtraColumns() {
SuggestionExtras.java 20 import java.util.Collection;
30 Collection<String> getExtraColumnNames();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockLogger.java 19 import java.util.Collection;
35 SuggestionCursor suggestionCursor, Collection<Corpus> queriedCorpora,
MockSources.java 21 import java.util.Collection;
39 public Collection<Source> getSources() {
MockSuggestionExtras.java 18 import java.util.Collection;
45 public Collection<String> doGetExtraColumnNames() {

Completed in 6707 milliseconds

1 2 3 4 56 7 8 91011>>