Searched refs:Collection (Results 1 - 25 of 407) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/stubs/
H A Dmap-util.h45 template <class Collection>
46 const typename Collection::value_type::second_type&
47 FindWithDefault(const Collection& collection,
48 const typename Collection::value_type::first_type& key,
49 const typename Collection::value_type::second_type& value) {
50 typename Collection::const_iterator it = collection.find(key);
60 template <class Collection>
61 const typename Collection::value_type::second_type*
62 FindOrNull(const Collection& collection,
63 const typename Collection
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java3 import java.util.Collection;
7 Collection getMatches(Selector selector)
H A DCollectionStore.java4 import java.util.Collection;
14 private Collection _local;
22 Collection collection)
33 public Collection getMatches(Selector selector)
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestCollectionGenerator.java19 import java.util.Collection;
29 extends TestContainerGenerator<Collection<E>, E> {
H A DAbstractCollectionTester.java19 import java.util.Collection;
31 extends AbstractContainerTester<Collection<E>, E> {
34 protected Collection<E> collection;
36 @Override protected Collection<E> actualContents() {
41 @Override protected Collection<E> resetContainer(Collection<E> newContents) {
H A DOneSizeTestContainerGenerator.java21 import java.util.Collection;
24 * The subject-generator interface accepted by Collection testers, for testing
25 * a Collection at one particular {@link CollectionSize}.
39 Collection<E> getSampleElements(int howMany);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509StoreSpi.java5 import java.util.Collection;
11 public abstract Collection engineGetMatches(Selector selector);
H A DX509CollectionStoreParameters.java4 import java.util.Collection;
15 private Collection collection;
27 public X509CollectionStoreParameters(Collection collection)
48 * Returns a copy of the <code>Collection</code>.
50 * @return The <code>Collection</code>. Is never <code>null</code>.
52 public Collection getCollection()
H A DPKIXAttrCertChecker.java5 import java.util.Collection;
41 * @param unresolvedCritExts a <code>Collection</code> of OID strings
47 CertPath holderCertPath, Collection unresolvedCritExts)
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursionCyclesMessage.java32 import java.util.Collection;
39 public Collection cycles;
41 public LeftRecursionCyclesMessage(Collection cycles) {
H A DRecursionOverflowMessage.java34 import java.util.Collection;
44 public Collection targetRules;
45 public Collection callSiteStates;
50 Collection targetRules,
51 Collection callSiteStates)
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Collection.h52 template<class Collection> static Collection* toNativeCollection(v8::Local<v8::Object> object)
54 return reinterpret_cast<Collection*>(object->GetPointerFromInternalField(v8DOMWrapperObjectIndex));
63 template<class Collection, class ItemType> static v8::Handle<v8::Value> getNamedPropertyOfCollection(v8::Local<v8::String> name, v8::Local<v8::Object> object)
68 Collection* collection = toNativeCollection<Collection>(object);
74 template<class Collection, class ItemType> static v8::Handle<v8::Value> collectionNamedPropertyGetter(v8::Local<v8::String> name, const v8::AccessorInfo& info)
85 return getNamedPropertyOfCollection<Collection, ItemType>(name, info.Holder());
89 template<class Collection, class ItemType> static v8::Handle<v8::Value> getIndexedPropertyOfCollection(uint32_t index, v8::Local<v8::Object> object)
94 Collection* collectio
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DMultimap.java21 import java.util.Collection;
151 Collection<V> replaceValues(@Nullable K key, Iterable<? extends V> values);
162 Collection<V> removeAll(@Nullable Object key);
182 Collection<V> get(@Nullable K key);
212 Collection<V> values();
221 Collection<Map.Entry<K, V>> entries();
236 Map<K, Collection<V>> asMap();
H A DForwardingCollection.java23 import java.util.Collection;
50 implements Collection<E> {
56 @Override protected abstract Collection<E> delegate();
69 public boolean removeAll(Collection<?> collection) {
94 public boolean containsAll(Collection<?> collection) {
99 public boolean addAll(Collection<? extends E> collection) {
104 public boolean retainAll(Collection<?> collection) {
141 @Beta protected boolean standardContainsAll(Collection<?> collection) {
157 @Beta protected boolean standardAddAll(Collection<? extends E> collection) {
188 @Beta protected boolean standardRemoveAll(Collection<
[all...]
H A DAbstractMultimap.java28 import java.util.Collection;
108 private transient Map<K, Collection<V>> map;
118 protected AbstractMultimap(Map<K, Collection<V>> map) {
124 final void setMap(Map<K, Collection<V>> map) {
127 for (Collection<V> values : map.values()) {
144 abstract Collection<V> createCollection();
155 Collection<V> createCollection(@Nullable K key) {
159 Map<K, Collection<V>> backingMap() {
182 for (Collection<V> collection : map.values()) {
193 Collection<
[all...]
H A DMultimaps.java42 import java.util.Collection;
72 * {@link Collection} classes.
107 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map,
108 final Supplier<? extends Collection<V>> factory) {
113 transient Supplier<? extends Collection<V>> factory;
115 CustomMultimap(Map<K, Collection<V>> map,
116 Supplier<? extends Collection<V>> factory) {
121 @Override protected Collection<V> createCollection() {
141 factory = (Supplier<? extends Collection<V>>) stream.readObject();
142 Map<K, Collection<
935 unmodifiableEntries( Collection<Entry<K, V>> entries) argument
[all...]
H A DCollections2.java31 import java.util.Collection;
37 * Provides static methods for working with {@code Collection} instances.
78 public static <E> Collection<E> filter(
79 Collection<E> unfiltered, Predicate<? super E> predicate) {
91 * Delegates to {@link Collection#contains}. Returns {@code false} if the
94 static boolean safeContains(Collection<?> collection, Object object) {
102 static class FilteredCollection<E> implements Collection<E> {
103 final Collection<E> unfiltered;
106 FilteredCollection(Collection<E> unfiltered,
125 public boolean addAll(Collection<
[all...]
H A DMultiset.java21 import java.util.Collection;
43 * {@code Collection}. It also defines an additional query operation, {@link
60 * given initial elements. This is simply a refinement of {@code Collection}'s
85 public interface Multiset<E> extends Collection<E> {
322 // Refined Collection Methods
336 * <p>This method refines {@link Collection#contains} to further specify that
351 * <p>This method refines {@link Collection#containsAll} to further specify
369 boolean containsAll(Collection<?> elements);
374 * <p>This method refines {@link Collection#add}, which only <i>ensures</i>
382 * multiset, unlike other {@link Collection} type
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableMultimapAsMapImplementsMapTest.java22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
H A DImmutableSetMultimapAsMapImplementsMapTest.java22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
H A DUnmodifiableMultimapAsMapImplementsMapTest.java22 import java.util.Collection;
39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() {
44 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
H A DForwardingCollectionTest.java30 import java.util.Collection;
43 private final Collection<T> backingCollection;
45 StandardImplForwardingCollection(Collection<T> backingCollection) {
49 @Override protected Collection<T> delegate() {
53 @Override public boolean addAll(Collection<? extends T> collection) {
65 @Override public boolean containsAll(Collection<?> collection) {
73 @Override public boolean removeAll(Collection<?> collection) {
77 @Override public boolean retainAll(Collection<?> collection) {
94 private static final Collection<String> EMPTY_COLLECTION =
97 private Collection<Strin
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java19 import java.util.Collection;
32 transient final Collection<E> delegate;
34 ForwardingImmutableCollection(Collection<E> delegate) {
46 @Override public boolean containsAll(Collection<?> targets) {
/external/apache-http/src/org/apache/http/cookie/params/
H A DCookieSpecParamBean.java34 import java.util.Collection;
45 public void setDatePatterns (final Collection <String> patterns) {
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DSignerInformationStore.java4 import java.util.Collection;
16 Collection signerInfos)
48 Collection list = getSigners(selector);
68 public Collection getSigners()
79 public Collection getSigners(
86 Collection match1 = getSigners(new SignerId(selector.getIssuer(), selector.getSerialNumber()));
93 Collection match2 = getSigners(new SignerId(selector.getSubjectKeyIdentifier()));

Completed in 2227 milliseconds

1234567891011>>