Searched defs:collection (Results 1 - 25 of 197) sorted by relevance

12345678

/external/lldb/include/lldb/Core/
H A DValueObjectList.h27 // A collection of ValueObject values that
79 typedef std::vector<lldb::ValueObjectSP> collection; typedef in class:lldb_private::ValueObjectList
83 collection m_value_objects;
H A DStreamCallback.h37 typedef std::map<lldb::tid_t, StreamString> collection; typedef in class:lldb_private::StreamCallback
40 collection m_accumulated_data;
/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/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h161 /// Check whether this collection of breakpoint locations have any
169 /// \b true if the collection contains at least one location that
175 /// Tell whether ALL the breakpoints in the location collection are internal.
195 typedef std::vector<lldb::BreakpointLocationSP> collection; typedef in class:lldb_private::BreakpointLocationCollection
197 collection::iterator
200 collection::const_iterator
203 collection m_break_loc_collection;
H A DBreakpointSiteList.h202 typedef std::map<lldb::addr_t, lldb::BreakpointSiteSP> collection; typedef in class:lldb_private::BreakpointSiteList
204 collection::iterator
207 collection::const_iterator
211 collection m_bp_site_list; // The breakpoint site list.
/external/lldb/include/lldb/Symbol/
H A DTypeList.h77 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection; typedef in class:lldb_private::TypeList
78 typedef collection::iterator iterator;
79 typedef collection::const_iterator const_iterator;
81 collection m_types;
H A DVariableList.h81 typedef std::vector<lldb::VariableSP> collection; typedef in class:lldb_private::VariableList
82 typedef collection::iterator iterator;
83 typedef collection::const_iterator const_iterator;
85 collection m_variables;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnames.h31 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;
H A DDWARFDIECollection.h43 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
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsCollectionContaining.java1 package org.hamcrest.collection;
20 public boolean matchesSafely(Iterable<T> collection) { argument
21 for (T item : collection) {
31 .appendText("a collection containing ")
H A DIsIn.java1 package org.hamcrest.collection;
12 private final Collection<T> collection; field in class:IsIn
14 public IsIn(Collection<T> collection) { argument
15 this.collection = collection;
19 collection = Arrays.asList(elements);
23 return collection.contains(o);
28 buffer.appendValueList("{", ", ", "}", collection);
32 public static <T> Matcher<T> isIn(Collection<T> collection) { argument
33 return new IsIn<T>(collection);
[all...]
H A DIsArray.java1 package org.hamcrest.collection;
H A DIsArrayContaining.java1 package org.hamcrest.collection;
H A DIsMapContaining.java1 package org.hamcrest.collection;
/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<T> collection)
24 _local = new ArrayList<T>(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<T> collection) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CollectionStoreParameters.java7 * 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) argument
29 if (collection == null)
31 throw new NullPointerException("collection canno
[all...]
/external/lldb/include/lldb/Target/
H A DTargetList.h226 typedef std::vector<lldb::TargetSP> collection; typedef in class:lldb_private::TargetList
230 collection m_target_list;
H A DThreadList.h148 typedef std::vector<lldb::ThreadSP> collection; typedef in class:lldb_private::ThreadList
154 collection m_threads; ///< The threads for this process.
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.h64 typedef std::vector<MachThreadSP> collection; typedef in class:MachThreadList
65 typedef collection::iterator iterator;
66 typedef collection::const_iterator const_iterator;
68 uint32_t UpdateThreadList (MachProcess *process, bool update, collection *num_threads = NULL);
71 collection m_threads;
/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/ceres-solver/internal/ceres/
H A Dmap_util.h59 FindOrDie(const Collection& collection, argument
61 typename Collection::const_iterator it = collection.find(key);
62 CHECK(it != collection.end()) << "Map key not found: " << key;
71 FindWithDefault(const Collection& collection, argument
74 typename Collection::const_iterator it = collection.find(key);
75 if (it == collection.end()) {
87 Collection * const collection,
91 collection->insert(typename Collection::value_type(key, value));
100 FindOrNull(Collection& collection, // NOLINT argument
102 typename Collection::iterator it = collection
86 InsertIfNotPresent( Collection * const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& value) argument
112 ContainsKey(const Collection& collection, const Key& key) argument
120 InsertOrDie(Collection* const collection, const typename Collection::value_type::first_type& key, const typename Collection::value_type::second_type& data) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DForwardingSet.java75 protected boolean standardRemoveAll(Collection<?> collection) { argument
76 return Sets.removeAllImpl(this, checkNotNull(collection)); // for GWT
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractCollectionTester.java24 * Base class for collection testers.
26 * @param <E> the element type of the collection to be tested.
35 protected Collection<E> collection; field in class:AbstractCollectionTester
38 return collection;
41 // TODO: dispose of this once collection is encapsulated.
43 collection = super.resetContainer(newContents);
44 return collection;
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DFilters.java58 * collection and false for all other cases.
60 public static <T> Filter<T> in( Collection<? extends T> collection )
62 return new InFilter<T>(collection);
77 * collection and false for all other cases. This is the equivalent
78 * of calling not(in(collection)).
80 public static <T> Filter<T> notIn( Collection<? extends T> collection )
82 return not( in( collection ) );
130 private Collection<? extends T> collection; field in class:Filters.InFilter
132 public InFilter( Collection<? extends T> collection )
134 this.collection
[all...]
/external/junit/src/org/junit/internal/matchers/
H A DIsCollectionContaining.java22 public boolean matchesSafely(Iterable<T> collection) { argument
23 for (T item : collection) {
33 .appendText("a collection containing ")

Completed in 3349 milliseconds

12345678