/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509CollectionStoreParameters.java | 4 import java.util.Collection; 7 * This class contains a collection for collection based <code>X509Store</code>s. 15 private Collection collection; field in class:X509CollectionStoreParameters 20 * The collection is copied. 23 * @param collection 24 * The collection containing X.509 object types. 25 * @throws NullPointerException if <code>collection</code> is <code>null</code>. 27 public X509CollectionStoreParameters(Collection collection [all...] |
X509StoreSpi.java | 5 import java.util.Collection; 11 public abstract Collection engineGetMatches(Selector selector);
|
/external/chromium-trace/trace-viewer/src/tracing/trace_model/ |
object_collection_test.js | 25 var collection = new tracing.trace_model.ObjectCollection({ }); 26 collection.idWasCreated( 28 collection.idWasDeleted( 30 collection.idWasCreated( 32 collection.idWasDeleted( 35 var testFrame = collection.getObjectInstanceAt('0x1000', 10); 39 var testObject = collection.getObjectInstanceAt('0x1000', 20); 48 var collection = new tracing.trace_model.ObjectCollection({}); 49 collection.idWasCreated( 51 collection.addSnapshot [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
Store.java | 3 import java.util.Collection; 7 Collection getMatches(Selector selector)
|
CollectionStore.java | 4 import java.util.Collection; 9 * A simple collection backed store. 14 private Collection _local; 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. 33 public Collection getMatches(Selector selector [all...] |
/external/chromium_org/tools/perf/page_sets/ |
tough_layer_cases.json | 2 "description": "A collection of tests to measure layer performance",
|
/external/llvm/test/YAMLParser/ |
spec-07-12a.data | 4 # collection (mapping) node.
|
spec-08-14.data | 6 - !!map # Block collection
|
spec-10-07.data | 8 [ collection, simple, key ]: value
|
spec-09-12.data | 3 # Outside flow collection: 7 # Inside flow collection:
|
/external/ceres-solver/internal/ceres/ |
map_util.h | 57 template <class Collection> 58 const typename Collection::value_type::second_type& 59 FindOrDie(const Collection& collection, 60 const typename Collection::value_type::first_type& key) { 61 typename Collection::const_iterator it = collection.find(key); 62 CHECK(it != collection.end()) << "Map key not found: " << key; 69 template <class Collection> 70 const typename Collection::value_type::second_type [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
map-util.h | 45 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); 51 if (it == collection.end()) { 60 template <class Collection> [all...] |
/libcore/luni/src/main/java/java/security/cert/ |
CollectionCertStoreParameters.java | 20 import java.util.Collection; 24 * The parameters to initialize a <i>Collection</i> type {@code CertStore} instance. 26 * It is used to specify the {@code Collection} where the {@code CertStore} will 30 // Default empty and immutable collection. 33 private static final Collection<?> defaultCollection = Collections.EMPTY_SET; 34 // A <code>Collection</code> of <code>Certificate</code>s 36 private final Collection<?> collection; field in class:CollectionCertStoreParameters 39 * Creates a new {@code CollectionCertStoreParameters} without a collection. 41 * The default collection is an empty and unmodifiable {@code Collection} [all...] |
/external/guava/guava/src/com/google/common/collect/ |
AbstractMultimap.java | 28 import java.util.Collection; 46 * 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 instanc 193 Collection<V> collection = map.get(key); local 201 Collection<V> collection = getOrCreateCollection(key); local 212 Collection<V> collection = map.get(key); local 222 Collection<V> collection = map.get(key); local 244 Collection<V> collection = getOrCreateCollection(key); local 283 Collection<V> collection = getOrCreateCollection(key); local 306 Collection<V> collection = map.remove(key); local 350 Collection<V> collection = map.get(key); local 910 Collection<V> collection = entry.getValue(); local 922 Collection<V> collection = subMap.remove(key); local [all...] |
ImmutableAsList.java | 26 * List returned by {@link ImmutableCollection#asList} when the collection isn't 34 private final transient ImmutableCollection<E> collection; field in class:ImmutableAsList 36 ImmutableAsList(Object[] array, ImmutableCollection<E> collection) { 38 this.collection = collection; 42 // The collection's contains() is at least as fast as RegularImmutableList's 44 return collection.contains(target); 51 final ImmutableCollection<?> collection; field in class:ImmutableAsList.SerializedForm 52 SerializedForm(ImmutableCollection<?> collection) { 53 this.collection = collection [all...] |
Collections2.java | 31 import java.util.Collection; 37 * Provides static methods for working with {@code Collection} instances. 50 * 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()} [all...] |
/libcore/luni/src/main/java/java/util/ |
Collection.java | 22 * {@code Collection} is the root of the collection hierarchy. It defines operations on 24 * of {@code Collection}s. 26 * All direct or indirect implementations of {@code Collection} should implement at 28 * collection and one with a parameter of type {@code Collection}. This second 29 * constructor can be used to create a collection of different type as the 30 * initial collection but with the same elements. Implementations of {@code Collection} 34 * Methods that change the content of a collection throw a [all...] |
AbstractCollection.java | 24 * Collection} interface. A subclass must implement the abstract methods {@code 25 * iterator()} and {@code size()} to create an immutable collection. To create a 26 * modifiable collection it's necessary to override the {@code add()} method that 31 public abstract class AbstractCollection<E> implements Collection<E> { 44 * Attempts to add all of the objects contained in {@code collection} 45 * to the contents of this {@code Collection} (optional). This implementation 46 * iterates over the given {@code Collection} and calls {@code add} for each 49 * {@code Collection} does not support adding elements, an {@code 52 * If the passed {@code Collection} is changed during the process of adding elements 53 * to this {@code Collection}, the behavior depends on the behavior of the passe [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/ |
JcaCertStore.java | 7 import java.util.Collection; 26 * @param collection - initial contents for the store, this is copied. 28 public JcaCertStore(Collection collection) 31 super(convertCerts(collection)); 34 private static Collection convertCerts(Collection collection) 37 List list = new ArrayList(collection.size()); 39 for (Iterator it = collection.iterator(); it.hasNext(); [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractCollectionTester.java | 19 import java.util.Collection; 22 * Base class for collection testers. 26 * @param <E> the element type of the collection to be tested. 31 extends AbstractContainerTester<Collection<E>, E> { 34 protected Collection<E> collection; field in class:AbstractCollectionTester 36 @Override protected Collection<E> actualContents() { 37 return collection; 40 // TODO: dispose of this once collection is encapsulated. 41 @Override protected Collection<E> resetContainer(Collection<E> newContents) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestFramework.java | 15 import java.util.Collection; 60 NodeList collection); 66 NamedNodeMap collection); 72 Collection collection); 83 Collection expected, 84 Collection actual); 119 Collection expected, 120 Collection actual); 156 boolean equalsIgnoreCase(Collection expected, Collection actual) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
Join.java | 3 import java.util.Collection; 6 public static String join(String delimiter, Collection collection) { 9 for (Object obj : collection) { 19 public static String join(String delimiter, Object... collection) { 22 for (Object obj : collection) {
|
/external/protobuf/src/google/protobuf/stubs/ |
map-util.h | 45 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); 51 if (it == collection.end()) { 60 template <class Collection> [all...] |
/external/mockito/src/org/mockito/internal/util/collections/ |
ListUtil.java | 8 import java.util.Collection; 13 public static <T> LinkedList<T> filter(Collection<T> collection, Filter<T> filter) { 15 for (T t : collection) {
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
algorithm.hpp | 31 /// of iterators, first pointing to the mismatch position in first collection, second iterator in second one 33 /// @param first1 - first collection begin iterator 34 /// @param last1 - first collection end iterator 35 /// @param first2 - second collection begin iterator 36 /// @param last2 - second collection end iterator 53 /// of iterators, first pointing to the mismatch position in first collection, second iterator in second one. This algorithms 54 /// uses supplied predicate for collection elements comparison 56 /// @param first1 - first collection begin iterator 57 /// @param last1 - first collection end iterator 58 /// @param first2 - second collection begin iterato [all...] |