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

1 2 3 4 5 6

  /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...]
IsArrayContaining.java 1 package org.hamcrest.collection;
IsCollectionContaining.java 1 package org.hamcrest.collection;
10 import java.util.Collection;
20 public boolean matchesSafely(Iterable<T> collection) {
21 for (T item : collection) {
31 .appendText("a collection containing ")
47 Collection<Matcher<? extends Iterable<T>>> all
57 Collection<Matcher<? extends Iterable<T>>> all
  /external/lldb/include/lldb/Core/
ValueObjectList.h 27 // A collection of ValueObject values that
79 typedef std::vector<lldb::ValueObjectSP> collection; typedef in class:lldb_private::ValueObjectList
83 collection m_value_objects;
FileSpecList.h 22 /// @brief A file collection class.
235 typedef std::vector<FileSpec> collection; ///< The collection type for the file list. typedef in class:lldb_private::FileSpecList
236 collection m_files; ///< A collection of FileSpec objects.
StreamCallback.h 37 typedef std::map<lldb::tid_t, StreamString> collection; typedef in class:lldb_private::StreamCallback
40 collection m_accumulated_data;
  /external/chromium_org/device/hid/
hid_device_filter_unittest.cc 19 HidCollectionInfo collection; variable
20 collection.usage.usage_page = HidUsageAndPage::kPageKeyboard;
21 collection.usage.usage = 0x01;
22 device_info_.collections.push_back(collection);
hid_device_filter.cc 58 const HidCollectionInfo& collection = *i; local
59 if (collection.usage.usage_page != usage_page_) {
62 if (usage_set_ && collection.usage.usage != usage_) {
  /external/lldb/include/lldb/Breakpoint/
BreakpointLocationCollection.h 161 /// 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;
BreakpointSiteList.h 202 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/
TypeList.h 77 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;
VariableList.h 81 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/
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;
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
  /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/chromium_org/chrome/browser/browsing_data/
browsing_data_appcache_helper_unittest.cc 61 std::map<GURL, content::AppCacheInfoVector>& collection = local
64 ASSERT_EQ(2u, collection.size());
65 EXPECT_TRUE(ContainsKey(collection, manifest1.GetOrigin()));
66 ASSERT_EQ(1u, collection[manifest1.GetOrigin()].size());
67 EXPECT_EQ(manifest1, collection[manifest1.GetOrigin()].at(0).manifest_url);
69 EXPECT_TRUE(ContainsKey(collection, manifest2.GetOrigin()));
70 EXPECT_EQ(2u, collection[manifest2.GetOrigin()].size());
72 manifest_results.insert(collection[manifest2.GetOrigin()].at(0).manifest_url);
73 manifest_results.insert(collection[manifest2.GetOrigin()].at(1).manifest_url);
93 std::map<GURL, content::AppCacheInfoVector>& collection local
    [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/lldb/include/lldb/Target/
TargetList.h 226 typedef std::vector<lldb::TargetSP> collection; typedef in class:lldb_private::TargetList
230 collection m_target_list;
ThreadList.h 148 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/
MachThreadList.h 64 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/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/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.cpp 95 StyleSheetCollection collection; local
96 ActiveDocumentStyleSheetCollector collector(collection);
100 analyzeStyleSheetChange(updateMode, collection, change);
113 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
115 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
121 collection.swap(*this);
ShadowTreeStyleSheetCollection.cpp 47 void ShadowTreeStyleSheetCollection::collectStyleSheets(StyleEngine* engine, StyleSheetCollection& collection)
84 collection.appendSheetForList(sheet);
86 collection.appendActiveStyleSheet(activeSheet);
92 StyleSheetCollection collection; local
93 collectStyleSheets(engine, collection);
96 analyzeStyleSheetChange(updateMode, collection, change);
104 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
106 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
112 collection.swap(*this);
  /external/chromium_org/third_party/webrtc/base/
scopedptrcollection.h 11 // Stores a collection of pointers that are deleted when the container is
38 const VectorT& collection() const { return collection_; } function in class:rtc::ScopedPtrCollection
46 // Remove |t| from the collection without deleting it.
  /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...]

Completed in 539 milliseconds

1 2 3 4 5 6