HomeSort by relevance Sort by last modified time
    Searched refs:Collection (Results 1 - 25 of 1145) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/net/quic/
quic_utils_chromium.h 34 template <class Collection>
35 const typename Collection::value_type::second_type&
36 FindOrDie(const Collection& collection,
37 const typename Collection::value_type::first_type& key) {
38 typename Collection::const_iterator it = collection.find(key);
39 CHECK(it != collection.end()) << "Map key not found: " << key;
44 template <class Collection>
45 typename Collection::value_type::second_type
    [all...]
  /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/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/guava/guava-testlib/src/com/google/common/collect/testing/
TestCollectionGenerator.java 19 import java.util.Collection;
29 extends TestContainerGenerator<Collection<E>, E> {
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...]
  /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...]
  /external/smack/src/org/jivesoftware/smack/
RosterListener.java 25 import java.util.Collection;
41 public void entriesAdded(Collection<String> addresses);
48 public void entriesUpdated(Collection<String> addresses);
55 public void entriesDeleted(Collection<String> addresses);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509StoreSpi.java 5 import java.util.Collection;
11 public abstract Collection engineGetMatches(Selector selector);
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...]
  /external/mockito/src/org/mockito/stubbing/answers/
ReturnsElementsOf.java 7 import java.util.Collection;
10 * Returns elements of the collection. Keeps returning the last element forever.
11 * Might be useful on occasion when you have a collection of elements to return.
26 public ReturnsElementsOf(Collection<?> elements) {
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionExtras.java 20 import java.util.Collection;
30 Collection<String> getExtraColumnNames();
  /frameworks/testing/support/src/android/support/test/internal/runner/
TestRequest.java 21 import java.util.Collection;
28 private final Collection<Failure> mFailures;
31 public TestRequest(Collection<Failure> requestBuildFailures, Request request) {
36 public Collection<Failure> getFailures() {
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
LeftRecursionCyclesMessage.java 32 import java.util.Collection;
39 public Collection cycles;
41 public LeftRecursionCyclesMessage(Collection cycles) {
  /external/objenesis/tck/src/org/objenesis/tck/
Reporter.java 18 import java.util.Collection;
44 void startTests(String platformDescription, Collection allCandidates,
45 Collection allObjenesisInstances);
  /libcore/luni/src/main/java/java/security/cert/
CertStoreSpi.java 21 import java.util.Collection;
54 public abstract Collection<? extends Certificate> engineGetCertificates(CertSelector selector)
69 public abstract Collection<? extends CRL> engineGetCRLs(CRLSelector selector)
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...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1ValueCollection.java 25 import java.util.Collection;
29 * This abstract class represents ASN.1 collection type.
31 * The value for such type is a collection of zero or
38 /** A value collection of this ASN.1 type */
42 * Constructs ASN1 collection type.
56 * @return - a collection of object's values to be encoded
58 public Collection<?> getValues(Object object) {
59 return (Collection<?>) object;
  /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...]
Set.java 26 public interface Set<E> extends Collection<E> {
45 * Adds the objects in the specified collection which do not exist yet in
48 * @param collection
49 * the collection of objects.
58 public boolean addAll(Collection<? extends E> collection);
81 * Searches this set for all objects in the specified collection.
83 * @param collection
84 * the collection of objects.
85 * @return {@code true} if all objects in the specified collection ar
    [all...]
  /frameworks/base/media/mca/filterfw/native/base/
utilities.h 73 template <class Collection>
74 const typename Collection::value_type::second_type*
75 FindOrNull(const Collection& collection,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
78 if (it == collection.end()) {
127 template <class Collection>
128 const typename Collection::value_type::second_typ
    [all...]
  /frameworks/base/media/mca/filterpacks/native/base/
utilities.h 73 template <class Collection>
74 const typename Collection::value_type::second_type*
75 FindOrNull(const Collection& collection,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
78 if (it == collection.end()) {
127 template <class Collection>
128 const typename Collection::value_type::second_typ
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
CollectionIndexCache.h 39 template <typename Collection, typename NodeType>
45 bool isEmpty(const Collection& collection)
51 return !nodeAt(collection, 0);
53 bool hasExactlyOneNode(const Collection& collection)
58 return !cachedNodeIndex() && !nodeAt(collection, 1);
59 return nodeAt(collection, 0) && !nodeAt(collection, 1);
62 unsigned nodeCount(const Collection&)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationUpdater.java 33 import java.util.Collection;
48 void updateConversation(Collection <Conversation> target, String columnName, String value);
58 void updateConversation(Collection <Conversation> target, String columnName, int value);
68 void updateConversation(Collection <Conversation> target, String columnName, boolean value);
78 void updateConversation(Collection <Conversation> target, ContentValues values);
88 int actionId, final Collection<Conversation> target, final DestructiveAction action,
98 void markConversationsRead(Collection<Conversation> targets, boolean read, boolean viewed);
147 public DestructiveAction getDeferredRemoveFolder(Collection<Conversation> target,
161 public void assignFolder(Collection<FolderOperation> folders, Collection<Conversation> target
    [all...]

Completed in 1255 milliseconds

1 2 3 4 5 6 7 8 91011>>