Searched refs:collection (Results 51 - 75 of 367) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/panels/
H A Ddetached_panel_drag_handler.cc16 DCHECK_EQ(PanelCollection::DETACHED, panel->collection()->type());
H A Dtest_panel_collection_squeeze_observer.h13 // Custom notification observer for waiting on panel collection that squeezes
18 // Register to listen for panel collection updated notifications
19 // from the specified collection to detect a change to the state
21 // panels in the collection are squeezed.
22 PanelCollectionSqueezeObserver(DockedPanelCollection* collection,
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DAbstractQueueTester.java24 * Base class for queue collection tests.
32 return (Queue<E>) collection;
H A DAbstractSetTester.java31 * collection in setUp(), but that caused problems when a tester changed the
32 * value of set or collection but not both.
35 return (Set<E>) collection;
H A DCollectionClearTester.java27 * A generic JUnit test which tests {@code clear()} operations on a collection.
38 collection.clear();
39 assertTrue("After clear(), a collection should be empty.",
40 collection.isEmpty());
47 collection.clear();
48 fail("clear() should throw UnsupportedOperation if a collection does "
59 collection.clear();
H A DCollectionSizeTester.java22 * A generic JUnit test which tests {@code size()} operations on a collection.
32 assertEquals("size():", getNumElements(), collection.size());
H A DCollectionToStringTester.java32 * collection. Can't be invoked directly; please see
42 collection.toString());
49 collection.toString());
56 "[" + samples.e0 + "]", collection.toString());
64 assertEquals("collection.toString() incorrect",
65 expected, collection.toString());
H A DListRetainAllTester.java43 collection = getSubjectGenerator().create(array);
45 collection.retainAll(MinimalCollection.of(createSamplesArray())));
55 collection = getSubjectGenerator().create(array);
57 collection.retainAll(MinimalCollection.of(samples.e2)));
H A DCollectionAddTester.java31 * A generic JUnit test which tests {@code add} operations on a collection.
45 collection.add(samples.e3));
52 collection.add(samples.e3);
65 collection.add(samples.e0));
75 assertTrue("add(null) should return true", collection.add(null));
83 collection.add(null);
H A DCollectionToArrayTester.java35 * collection. Can't be invoked directly; please see
45 Object[] array = collection.toArray();
54 * <p>For maximum effect, the collection under test should be created from an
58 Object[] array = collection.toArray();
64 E[] array = collection.toArray(empty);
74 E[] array = collection.toArray(empty);
83 Object[] array = collection.toArray(in);
94 array, collection.toArray(array));
102 array, collection.toArray(array));
109 array, collection
[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/chromium_org/chrome/browser/
H A Djumplist_updater_win.cc24 bool AddShellLink(base::win::ScopedComPtr<IObjectCollection> collection, argument
75 // Add this IShellLink object to the given collection.
76 return SUCCEEDED(collection->AddObject(link));
173 base::win::ScopedComPtr<IObjectCollection> collection;
174 HRESULT result = collection.CreateInstance(CLSID_EnumerableObjectCollection,
182 AddShellLink(collection, application_path.value(), *it);
190 result = collection.QueryInterface(object_array.Receive());
215 // We once add the given items to this collection object and add this
216 // collection to the JumpList.
217 base::win::ScopedComPtr<IObjectCollection> collection;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DCollectionItemsCache.h88 unsigned CollectionItemsCache<Collection, NodeType>::nodeCount(const Collection& collection) argument
93 NodeType* currentNode = collection.traverseToFirst();
98 currentNode = collection.traverseForwardToOffset(currentIndex + 1, *currentNode, currentIndex);
109 inline NodeType* CollectionItemsCache<Collection, NodeType>::nodeAt(const Collection& collection, unsigned index) argument
115 return Base::nodeAt(collection, index);
/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/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp40 collection::iterator iter = m_bp_site_list.find (bp_site_load_addr);
44 m_bp_site_list.insert (iter, collection::value_type (bp_site_load_addr, bp));
85 collection::iterator pos = GetIDIterator(break_id); // Predicate
98 collection::iterator pos = m_bp_site_list.find(address);
124 BreakpointSiteList::collection::iterator
132 BreakpointSiteList::collection::const_iterator
145 collection::iterator pos = GetIDIterator(break_id);
157 collection::const_iterator pos = GetIDConstIterator(break_id);
169 collection::iterator iter = m_bp_site_list.find(addr);
179 collection
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentStyleSheetCollection.cpp95 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);
/external/lldb/include/lldb/Core/
H A DVMRange.h26 typedef std::vector<VMRange> collection; typedef in class:lldb_private::VMRange
27 typedef collection::iterator iterator;
28 typedef collection::const_iterator const_iterator;
157 ContainsValue(const VMRange::collection& coll, lldb::addr_t value);
160 ContainsRange(const VMRange::collection& coll, const VMRange& range);
165 FindRangeIndexThatContainsValue (const VMRange::collection& coll, lldb::addr_t value);
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;
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingCollectionTest.java53 @Override public boolean addAll(Collection<? extends T> collection) { argument
54 return standardAddAll(collection);
65 @Override public boolean containsAll(Collection<?> collection) { argument
66 return standardContainsAll(collection);
73 @Override public boolean removeAll(Collection<?> collection) { argument
74 return standardRemoveAll(collection);
77 @Override public boolean retainAll(Collection<?> collection) { argument
78 return standardRetainAll(collection);
H A DForwardingQueueTest.java53 @Override public boolean addAll(Collection<? extends T> collection) { argument
54 return standardAddAll(collection);
65 @Override public boolean containsAll(Collection<?> collection) { argument
66 return standardContainsAll(collection);
73 @Override public boolean removeAll(Collection<?> collection) { argument
74 return standardRemoveAll(collection);
77 @Override public boolean retainAll(Collection<?> collection) { argument
78 return standardRetainAll(collection);
H A DForwardingSetTest.java61 @Override public boolean addAll(Collection<? extends T> collection) { argument
62 return standardAddAll(collection);
73 @Override public boolean containsAll(Collection<?> collection) { argument
74 return standardContainsAll(collection);
81 @Override public boolean removeAll(Collection<?> collection) { argument
82 return standardRemoveAll(collection);
85 @Override public boolean retainAll(Collection<?> collection) { argument
86 return standardRetainAll(collection);
H A DForwardingSortedSetTest.java60 @Override public boolean addAll(Collection<? extends T> collection) { argument
61 return standardAddAll(collection);
72 @Override public boolean containsAll(Collection<?> collection) { argument
73 return standardContainsAll(collection);
80 @Override public boolean removeAll(Collection<?> collection) { argument
81 return standardRemoveAll(collection);
84 @Override public boolean retainAll(Collection<?> collection) { argument
85 return standardRetainAll(collection);

Completed in 331 milliseconds

1234567891011>>