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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/guava/guava/src/com/google/common/collect/
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...]
ForwardingCollection.java 23 import java.util.Collection;
29 * A collection which forwards all its method calls to another collection.
31 * backing collection as desired per the <a
50 implements Collection<E> {
56 @Override protected abstract Collection<E> delegate();
69 public boolean removeAll(Collection<?> collection) {
70 return delegate().removeAll(collection);
94 public boolean containsAll(Collection<?> collection)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionEqualsTester.java 22 * Tests {@link java.util.Collection#equals}.
31 collection.equals(collection));
37 collection.equals(null));
42 assertFalse("A Collection should never equal an "
43 + "object that is not a Collection.",
44 collection.equals("huh?"));
  /external/smack/src/org/jivesoftware/smackx/pubsub/
NodeType.java 24 collection; enum constant in enum:NodeType
EventElementType.java 24 /** A node has been associated or dissassociated with a collection node */
25 collection, enum constant in enum:EventElementType
  /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/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/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDIECollection.h 43 typedef std::vector<const DWARFDebugInfoEntry *> collection; typedef in class:DWARFDIECollection
44 typedef collection::iterator iterator;
45 typedef collection::const_iterator const_iterator;
47 collection m_dies; // Ordered list of die offsets
DWARFDebugPubnames.h 31 typedef std::list<DWARFDebugPubnamesSet> collection; typedef in class:DWARFDebugPubnames
32 typedef collection::iterator iterator;
33 typedef collection::const_iterator const_iterator;
35 collection m_sets;
  /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/chromium_org/third_party/WebKit/Source/web/
WebNodeTest.cpp 37 WebElementCollection collection = node.getElementsByHTMLTagName("label"); local
38 EXPECT_EQ(1u, collection.length());
39 EXPECT_TRUE(collection.firstItem().hasHTMLTagName("label"));
41 collection = node.getElementsByHTMLTagName("LABEL");
42 EXPECT_EQ(0u, collection.length());
  /external/hamcrest/library/src/org/hamcrest/collection/
IsIn.java 1 package org.hamcrest.collection;
4 import java.util.Collection;
12 private final Collection<T> collection; field in class:IsIn
14 public IsIn(Collection<T> collection) {
15 this.collection = collection;
19 collection = Arrays.asList(elements);
23 return collection.contains(o)
    [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/chromium_org/third_party/WebKit/Source/core/html/
CollectionIndexCache.h 37 template <typename Collection, typename NodeType>
43 bool isEmpty(const Collection& collection)
49 return !nodeAt(collection, 0);
51 bool hasExactlyOneNode(const Collection& collection)
56 return !cachedNodeIndex() && !nodeAt(collection, 1);
57 return nodeAt(collection, 0) && !nodeAt(collection, 1);
60 unsigned nodeCount(const Collection&)
    [all...]
HTMLAllCollection.h 46 DEFINE_TYPE_CASTS(HTMLAllCollection, LiveNodeListBase, collection, collection->type() == DocAll, collection.type() == DocAll);
WindowNameCollection.h 26 DEFINE_TYPE_CASTS(WindowNameCollection, LiveNodeListBase, collection, collection->type() == WindowNamedItems, collection.type() == WindowNamedItems);
  /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/lldb/include/lldb/Symbol/
UnwindTable.h 51 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;
  /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...]
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_drag_handler.cc 16 DCHECK_EQ(PanelCollection::DOCKED, panel->collection()->type());
18 DockedPanelCollection* collection = local
19 static_cast<DockedPanelCollection*>(panel->collection());
27 int bottom = collection->GetBottomPositionForExpansionState(
45 collection->RefreshLayout();
51 DockedPanelCollection* collection = local
52 static_cast<DockedPanelCollection*>(panel->collection());
60 find(collection->panels_.begin(), collection->panels_.end(), panel);
64 for (; current_panel_iterator != collection->panels_.end()
85 DockedPanelCollection* collection = local
    [all...]
  /external/chromium_org/ui/message_center/views/
popup_alignment_delegate.h 24 void set_collection(MessagePopupCollection* collection) {
25 collection_ = collection;
  /frameworks/base/services/tests/servicestests/src/com/android/server/net/
NetworkStatsCollectionTest.java 66 final NetworkStatsCollection collection = new NetworkStatsCollection(30 * MINUTE_IN_MILLIS); local
67 collection.readLegacyNetwork(testFile);
70 assertSummaryTotal(collection, buildTemplateMobileAll(TEST_IMSI),
75 collection.write(new DataOutputStream(bos));
78 collection.reset();
79 assertSummaryTotal(collection, buildTemplateMobileAll(TEST_IMSI),
83 collection.read(new ByteArrayInputStream(bos.toByteArray()));
84 assertSummaryTotal(collection, buildTemplateMobileAll(TEST_IMSI),
92 final NetworkStatsCollection collection = new NetworkStatsCollection(30 * MINUTE_IN_MILLIS); local
93 collection.readLegacyUid(testFile, false)
118 final NetworkStatsCollection collection = new NetworkStatsCollection(30 * MINUTE_IN_MILLIS); local
141 final NetworkStatsCollection collection = new NetworkStatsCollection(HOUR_IN_MILLIS); local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 21 import java.util.Collection;
42 * @throws IllegalArgumentException if the collection is null or empty
45 Collection<TValue> collection) {
46 validateCollection(collection);
48 List<TValue> arrayCopy = new ArrayList<TValue>(collection);
58 * Calculate the mean of a collection.
60 * @throws IllegalArgumentException if the collection is null or empty
62 public static <TValue extends Number> double getMean(Collection<TValue> collection) {
    [all...]

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>