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

123456789

/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/chromium_org/net/quic/
H A Dquic_utils_chromium.h36 FindOrDie(const Collection& collection, argument
38 typename Collection::const_iterator it = collection.find(key);
39 CHECK(it != collection.end()) << "Map key not found: " << key;
46 FindOrDie(Collection& collection, // NOLINT argument
48 typename Collection::iterator it = collection.find(key);
49 CHECK(it != collection.end()) << "Map key not found: " << key;
57 FindOrNull(const Collection& collection, argument
59 typename Collection::const_iterator it = collection.find(key);
60 if (it == collection.end()) {
69 FindOrNull(Collection& collection, // NOLIN argument
[all...]
/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/smack/src/org/jivesoftware/smackx/pubsub/
H A DNodeType.java24 collection; enum constant in enum:NodeType
/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...]
/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 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.
21 CollectionStore( Collection 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/chromium_org/chrome/browser/ui/panels/
H A Dtest_panel_collection_squeeze_observer.cc13 DockedPanelCollection* collection, Panel* active_panel)
16 content::Source<PanelCollection>(collection)),
17 panel_collection_(collection),
12 PanelCollectionSqueezeObserver( DockedPanelCollection* collection, Panel* active_panel) argument
H A Ddocked_panel_drag_handler.cc16 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
85 DockedPanelCollection* collection = local
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebNodeTest.cpp39 WebElementCollection collection = node.getElementsByTagName("label"); local
40 EXPECT_EQ(1u, collection.length());
41 EXPECT_TRUE(collection.firstItem().hasHTMLTagName("label"));
43 collection = node.getElementsByTagName("LABEL");
44 EXPECT_EQ(0u, collection.length());
/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/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_appcache_helper_unittest.cc59 std::map<GURL, appcache::AppCacheInfoVector>& collection = local
62 ASSERT_EQ(2u, collection.size());
63 EXPECT_TRUE(ContainsKey(collection, manifest1.GetOrigin()));
64 ASSERT_EQ(1u, collection[manifest1.GetOrigin()].size());
65 EXPECT_EQ(manifest1, collection[manifest1.GetOrigin()].at(0).manifest_url);
67 EXPECT_TRUE(ContainsKey(collection, manifest2.GetOrigin()));
68 EXPECT_EQ(2u, collection[manifest2.GetOrigin()].size());
70 manifest_results.insert(collection[manifest2.GetOrigin()].at(0).manifest_url);
71 manifest_results.insert(collection[manifest2.GetOrigin()].at(1).manifest_url);
91 std::map<GURL, appcache::AppCacheInfoVector>& collection local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8HTMLAllCollectionCustom.cpp44 static v8::Handle<v8::Value> getNamedItems(HTMLAllCollection* collection, AtomicString name, const CallbackInfo& info) argument
47 collection->namedItems(name, namedItems);
61 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument, const CallbackInfo& info) argument
66 v8::Handle<v8::Value> result = getNamedItems(collection, name, info);
74 RefPtrWillBeRawPtr<Element> result = collection->item(index->Uint32Value());

Completed in 626 milliseconds

123456789