Searched refs:collection (Results 26 - 50 of 367) sorted by relevance

1234567891011>>

/external/lldb/include/lldb/Symbol/
H A DUnwindTable.h51 typedef std::map<lldb::addr_t, lldb::FuncUnwindersSP> collection; typedef in class:lldb_private::UnwindTable
52 typedef collection::iterator iterator;
53 typedef collection::const_iterator const_iterator;
56 collection m_unwinds;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
H A DJoin.java6 public static String join(String delimiter, Collection collection) { argument
9 for (Object obj : collection) {
19 public static String join(String delimiter, Object... collection) { argument
22 for (Object obj : collection) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionContainsAllTester.java33 * collection. Can't be invoked directly; please see
46 collection.containsAll(MinimalCollection.of()));
52 collection.containsAll(MinimalCollection.of(samples.e0)));
57 collection.containsAll(MinimalCollection.of(createSamplesArray())));
62 collection.containsAll(collection));
67 collection.containsAll(MinimalCollection.of(samples.e0, samples.e3)));
72 collection.containsAll(MinimalCollection.of(samples.e3)));
78 assertFalse(collection.containsAll(MinimalCollection.of((E) null)));
84 assertFalse(collection
[all...]
H A DCollectionContainsTester.java30 * collection. Can't be invoked directly; please see
42 collection.contains(samples.e0));
47 collection.contains(samples.e3));
53 collection.contains(null));
67 collection.contains(samples.e3));
74 assertTrue("contains(null) should return true", collection.contains(null));
80 collection.contains(WrongType.VALUE));
H A DCollectionRemoveAllTester.java34 * collection. Can't be invoked directly; please see
47 collection.removeAll(MinimalCollection.of()));
54 collection.removeAll(MinimalCollection.of(samples.e3)));
62 collection.removeAll(MinimalCollection.of(samples.e0)));
70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3)));
81 collection.removeAll(MinimalCollection.of(
92 collection.removeAll(MinimalCollection.of()));
103 collection.removeAll(MinimalCollection.of(samples.e3)));
113 collection.removeAll(MinimalCollection.of(samples.e0));
119 assertTrue(collection
[all...]
H A DCollectionAddAllTester.java34 * A generic JUnit test which tests addAll operations on a collection. Can't be
48 collection.addAll(emptyCollection()));
56 collection.addAll(emptyCollection()));
65 collection.addAll(createDisjointCollection()));
72 collection.addAll(createDisjointCollection());
84 collection.addAll(MinimalCollection.of(samples.e3, samples.e0)));
85 assertTrue("should contain " + samples.e3, collection.contains(samples.e3));
86 assertTrue("should contain " + samples.e0, collection.contains(samples.e0));
93 collection.addAll(MinimalCollection.of(samples.e3, samples.e0));
105 collection
[all...]
H A DCollectionIsEmptyTester.java26 * collection. Can't be invoked directly; please see
36 assertTrue("isEmpty() should return true", collection.isEmpty());
41 assertFalse("isEmpty() should return false", collection.isEmpty());
/external/clang/test/SemaObjC/
H A Dforeach.m43 NSObject<NSFastEnumeration>* collection = ((void*)0);
44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */
53 void test2(NSObject<NSFastEnumeration> *collection) {
55 for (obj.prop in collection) { /* expected-error {{selector element is not a valid lvalue}} */
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.cpp35 collection::const_reverse_iterator pos;
36 collection::const_reverse_iterator begin = m_entries.rbegin();
37 collection::const_reverse_iterator end = m_entries.rend();
73 collection::const_iterator pos;
74 collection::const_iterator begin = m_entries.begin();
75 collection::const_iterator end = m_entries.end();
77 collection::const_iterator rhs_pos;
78 collection::const_iterator rhs_begin = rhs.m_entries.begin();
H A DDWARFAttribute.h36 typedef std::vector<DWARFAttribute> collection; typedef in class:DWARFAttribute
37 typedef collection::iterator iterator;
38 typedef collection::const_iterator const_iterator;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMultimap.java46 * a multimap as a map that associates each key with a collection of values. All
51 * #createCollection()}, which creates an empty collection of values for a key.
56 * to create the collection of values for that key. The subclass should not call
65 * <p>Keys and values may be null, as long as the underlying collection classes
69 * allow duplicates. If the collection, such as a {@link Set}, does not support
72 * List} that allow duplicates, the collection will keep the existing key-value
92 * The map variable contains the collection of values associated with each
94 * contain any values for that key, a new collection generated by
95 * createCollection is added to the map. That same collection instance
97 * all values for the key are removed, the key and collection ar
318 unmodifiableCollectionSubclass( Collection<V> collection) argument
362 wrapCollection( @ullable K key, Collection<V> collection) argument
566 addAll(Collection<? extends V> collection) argument
639 iteratorOrListIterator(Collection<V> collection) argument
1111 Collection<V> collection; field in class:AbstractMultimap.EntryIterator
1274 Collection<V> collection; field in class:AbstractMultimap.AsMap.AsMapIterator
[all...]
H A DCollections2.java50 * returned collection is a live view of {@code unfiltered}; changes to one
53 * <p>The resulting collection's iterator does not support {@code remove()},
54 * but all other collection methods are supported. When given an element that
55 * doesn't satisfy the predicate, the collection's {@code add()} and {@code
58 * collection, only elements that satisfy the filter will be removed from the
59 * underlying collection.
61 * <p>The returned collection isn't threadsafe or serializable, even if
64 * <p>Many of the filtered collection's methods, such as {@code size()},
65 * iterate across every element in the underlying collection and determine
82 // collection
94 safeContains(Collection<?> collection, Object object) argument
125 addAll(Collection<? extends E> collection) argument
159 containsAll(Collection<?> collection) argument
196 removeAll(final Collection<?> collection) argument
208 retainAll(final Collection<?> collection) argument
317 toStringImpl(final Collection<?> collection) argument
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_appcache_helper_unittest.cc61 std::map<GURL, content::AppCacheInfoVector>& collection = local
64 ASSERT_EQ(2u, collection.size());
65 EXPECT_TRUE(ContainsKey(collection, manifest1.GetOrigin()));
66 ASSERT_EQ(1u, collection[manifest1.GetOrigin()].size());
67 EXPECT_EQ(manifest1, collection[manifest1.GetOrigin()].at(0).manifest_url);
69 EXPECT_TRUE(ContainsKey(collection, manifest2.GetOrigin()));
70 EXPECT_EQ(2u, collection[manifest2.GetOrigin()].size());
72 manifest_results.insert(collection[manifest2.GetOrigin()].at(0).manifest_url);
73 manifest_results.insert(collection[manifest2.GetOrigin()].at(1).manifest_url);
93 std::map<GURL, content::AppCacheInfoVector>& collection local
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
H A DJcaCertStore.java26 * @param collection - initial contents for the store, this is copied.
28 public JcaCertStore(Collection collection) argument
31 super(convertCerts(collection));
34 private static Collection convertCerts(Collection collection) argument
37 List list = new ArrayList(collection.size());
39 for (Iterator it = collection.iterator(); it.hasNext();)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DClassCollection.h60 DEFINE_TYPE_CASTS(ClassCollection, LiveNodeListBase, collection, collection->type() == ClassCollectionType, collection.type() == ClassCollectionType);
H A DDocumentStyleSheetCollector.cpp62 ActiveDocumentStyleSheetCollector::ActiveDocumentStyleSheetCollector(StyleSheetCollection& collection) argument
63 : DocumentStyleSheetCollector(collection.m_styleSheetsForStyleSheetList, collection.m_activeAuthorStyleSheets, m_visitedDocuments)
H A DTagCollection.h58 DEFINE_TYPE_CASTS(TagCollection, LiveNodeListBase, collection, collection->type() == TagCollectionType, collection.type() == TagCollectionType);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDataListOptionsCollection.h30 DEFINE_TYPE_CASTS(HTMLDataListOptionsCollection, LiveNodeListBase, collection, collection->type() == DataListOptions, collection.type() == DataListOptions);
H A DHTMLOptionsCollection.h60 DEFINE_TYPE_CASTS(HTMLOptionsCollection, LiveNodeListBase, collection, collection->type() == SelectOptions, collection.type() == SelectOptions);
H A DHTMLTagCollection.h50 DEFINE_TYPE_CASTS(HTMLTagCollection, LiveNodeListBase, collection, collection->type() == HTMLTagCollectionType, collection.type() == HTMLTagCollectionType);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DCollectionStore.java9 * A simple collection backed store.
19 * @param collection - initial contents for the store, this is copied.
22 Collection collection)
24 _local = new ArrayList(collection);
28 * Return the matches in the collection for the passed in selector.
31 * @return a possibly empty collection of matching objects.
21 CollectionStore( Collection collection) argument
/external/chromium_org/ui/message_center/views/
H A Dpopup_alignment_delegate.h24 void set_collection(MessagePopupCollection* collection) { argument
25 collection_ = collection;
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DAbstractMultisetTester.java24 * Base class for multiset collection tests.
31 return (Multiset<E>) collection;
35 collection =
/external/lldb/include/lldb/Core/
H A DStreamCallback.h37 typedef std::map<lldb::tid_t, StreamString> collection; typedef in class:lldb_private::StreamCallback
40 collection m_accumulated_data;
/external/mockito/src/org/mockito/internal/util/collections/
H A DListUtil.java13 public static <T> LinkedList<T> filter(Collection<T> collection, Filter<T> filter) { argument
15 for (T t : collection) {

Completed in 852 milliseconds

1234567891011>>