Searched refs:collection (Results 76 - 100 of 367) sorted by relevance

1234567891011>>

/external/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp51 collection::iterator pos = GetIDPairIterator(bp_id, bp_loc_id); // Predicate
81 BreakpointLocationCollection::collection::iterator
88 BreakpointLocationCollection::collection::const_iterator
99 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_id);
153 collection::iterator pos,
168 collection::const_iterator pos,
188 collection::iterator pos,
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDeclContext.h104 typedef std::vector<Entry> collection; typedef in class:DWARFDeclContext
105 collection m_entries;
H A DUniqueDWARFASTType.h128 typedef std::vector<UniqueDWARFASTType> collection; typedef in class:UniqueDWARFASTTypeList
129 collection m_collection;
161 collection::const_iterator pos = m_collection.find (unique_name_cstr);
171 typedef llvm::DenseMap<const char *, UniqueDWARFASTTypeList> collection; typedef in class:UniqueDWARFASTTypeMap
172 collection m_collection;
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DUnmodifiableCollectionTests.java98 * Verifies that a collection is immutable.
100 * <p>A collection is considered immutable if:
105 * collection throw UnsupportedOperationException when those mutators
109 * @param collection the presumed-immutable collection
111 * {@code collection}. {@code collection} may or may not have {@code
115 Collection<E> collection, E sampleElement) {
119 copy.addAll(collection);
121 collection
114 assertCollectionIsUnmodifiable( Collection<E> collection, E sampleElement) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetCreationTester.java46 collection = getSubjectGenerator().create(array);
58 collection = getSubjectGenerator().create(array);
72 collection = getSubjectGenerator().create(array);
84 collection = getSubjectGenerator().create(array);
/external/lldb/include/lldb/Target/
H A DPathMappingList.h153 typedef std::vector <pair> collection; typedef in class:lldb_private::PathMappingList
154 typedef collection::iterator iterator;
155 typedef collection::const_iterator const_iterator;
163 collection m_pairs;
H A DStackFrameList.h134 typedef std::vector<lldb::StackFrameSP> collection; typedef in class:lldb_private::StackFrameList
135 typedef collection::iterator iterator;
136 typedef collection::const_iterator const_iterator;
141 collection m_frames;
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureNodeFields.java46 * The collection with which a node is affiliated
50 collection, enum constant in enum:ConfigureNodeFields
77 * Who may associate leaf nodes with a collection
85 * collection
92 * The child nodes (leaf or collection) associated with a collection
100 * collection
121 * Whether the node is a leaf (default) or collection
/external/chromium_org/device/hid/
H A Dhid_device_filter.cc58 const HidCollectionInfo& collection = *i; local
59 if (collection.usage.usage_page != usage_page_) {
62 if (usage_set_ && collection.usage.usage != usage_) {
H A Dhid_device_filter_unittest.cc19 HidCollectionInfo collection; variable
20 collection.usage.usage_page = HidUsageAndPage::kPageKeyboard;
21 collection.usage.usage = 0x01;
22 device_info_.collections.push_back(collection);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlsCollection.h68 DEFINE_TYPE_CASTS(HTMLFormControlsCollection, LiveNodeListBase, collection, collection->type() == FormControls, collection.type() == FormControls);
/external/chromium_org/third_party/webrtc/base/
H A Dscopedptrcollection_unittest.cc48 EXPECT_EQ(0u, collection_->collection().size());
54 EXPECT_EQ(static_cast<size_t>(kNum), collection_->collection().size());
63 EXPECT_EQ(1u, collection_->collection().size());
/external/lldb/source/Target/
H A DUnixSignals.cpp116 collection::iterator pos = m_signals.find (signo);
124 collection::const_iterator pos = m_signals.find (signo);
144 collection::const_iterator pos, end = m_signals.end ();
169 collection::const_iterator pos = m_signals.find (current_signal);
170 collection::const_iterator end = m_signals.end();
192 collection::const_iterator pos = m_signals.find (signo);
208 collection::const_iterator pos = m_signals.find (signo);
217 collection::iterator pos = m_signals.find (signo);
238 collection::const_iterator pos = m_signals.find (signo);
247 collection
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingMultisetTest.java55 @Override public boolean addAll(Collection<? extends T> collection) { argument
56 return standardAddAll(collection);
75 @Override public boolean containsAll(Collection<?> collection) { argument
76 return standardContainsAll(collection);
83 @Override public boolean removeAll(Collection<?> collection) { argument
84 return standardRemoveAll(collection);
87 @Override public boolean retainAll(Collection<?> collection) { argument
88 return standardRetainAll(collection);
200 Collection<? extends Entry<String>> collection) {
209 @Override public boolean containsAll(Collection<?> collection) {
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/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);
70 static v8::Handle<v8::Value> getItem(HTMLAllCollection* collection, v8::Handle<v8::Value> argument, const CallbackInfo& info) argument
75 v8::Handle<v8::Value> result = getNamedItems(collection, name, info);
83 RefPtrWillBeRawPtr<Element> result = collection->item(index->Uint32Value());
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFontResource.cpp193 RefPtrWillBeRawPtr<TagCollection> collection = m_externalSVGDocument->getElementsByTagNameNS(SVGNames::fontTag.namespaceURI(), SVGNames::fontTag.localName()); local
194 if (!collection)
197 unsigned collectionLength = collection->length();
203 ASSERT(collection->item(i));
204 ASSERT(isSVGFontElement(collection->item(i)));
209 return toSVGFontElement(collection->item(0));
212 SVGFontElement* element = toSVGFontElement(collection->item(i));
/external/chromium_org/chrome/browser/ui/panels/
H A Ddetached_panel_collection.cc85 DCHECK_NE(this, panel->collection());
96 DCHECK_EQ(this, panel->collection());
111 DCHECK_EQ(this, panel->collection());
117 DCHECK_EQ(this, panel->collection());
125 DCHECK_EQ(this, panel->collection());
147 DCHECK_EQ(this, panel->collection());
152 DCHECK_EQ(this, panel->collection());
154 // regardless of which collection the panel is in. So we just quietly return.
158 DCHECK_EQ(this, panel->collection());
160 // regardless of which collection th
[all...]
H A Dpanel_drag_browsertest.cc964 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
976 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
987 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
1026 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
1038 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
1049 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
1071 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
1089 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
1102 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
1111 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()
[all...]
H A Dstacked_panel_drag_handler.cc18 DCHECK_EQ(PanelCollection::STACKED, panel->collection()->type());
52 DCHECK_EQ(PanelCollection::STACKED, panel->collection()->type());
/external/hamcrest/library/src/org/hamcrest/
H A DMatchers.java166 return org.hamcrest.collection.IsArrayContaining.hasItemInArray(elementMatcher);
170 return org.hamcrest.collection.IsArrayContaining.hasItemInArray(element);
174 return org.hamcrest.collection.IsCollectionContaining.hasItem(element);
178 return org.hamcrest.collection.IsCollectionContaining.hasItem(elementMatcher);
182 return org.hamcrest.collection.IsCollectionContaining.hasItems(elementMatchers);
186 return org.hamcrest.collection.IsCollectionContaining.hasItems(elements);
190 return org.hamcrest.collection.IsMapContaining.hasEntry(keyMatcher, valueMatcher);
194 return org.hamcrest.collection.IsMapContaining.hasEntry(key, value);
198 return org.hamcrest.collection.IsMapContaining.hasKey(keyMatcher);
202 return org.hamcrest.collection
213 isIn(java.util.Collection<T> collection) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DMinimalCollection.java25 * A simplistic collection which implements only the bare minimum allowed by the
78 @Override public boolean containsAll(Collection<?> collection) { argument
80 for (Object object : collection) {
87 return super.containsAll(collection);
101 * a "type A" unmodifiable collection freaks out proactively, even if there
/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 ")
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachException.h112 typedef std::vector<Message> collection; typedef in struct:MachException::Message
113 typedef collection::iterator iterator;
114 typedef collection::const_iterator const_iterator;
/external/lldb/include/lldb/Core/
H A DThreadSafeSTLMap.h27 typedef std::map<_Key,_Tp> collection; typedef in class:lldb_private::ThreadSafeSTLMap
28 typedef typename collection::iterator iterator;
29 typedef typename collection::const_iterator const_iterator;
172 collection m_collection;
/external/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h158 typedef std::map<nub_addr_t, DNBBreakpoint> collection; typedef in class:DNBBreakpointList
159 typedef collection::iterator iterator;
160 typedef collection::const_iterator const_iterator;
161 collection m_breakpoints;

Completed in 663 milliseconds

1234567891011>>