Searched refs:collection (Results 176 - 200 of 367) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSets.java87 * order, not the order in which the elements appear in the given collection.
116 * exception on an empty collection, and it may be called on any iterable, not
360 * the specified collection. If the collection is an {@link EnumSet}, this
362 * the specified collection must contain at least one element, in order to
363 * determine the element type. If the collection could be empty, use
366 * @param collection the collection whose complement should be stored in the
369 * that aren't present in the given collection
370 * @throws IllegalArgumentException if {@code collection} i
373 complementOf( Collection<E> collection) argument
396 complementOf( Collection<E> collection, Class<E> type) argument
404 makeComplementByHand( Collection<E> collection, Class<E> type) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DCollectionCreationTester.java30 * static factory method) of a collection. Can't be invoked directly; please see
42 collection = getSubjectGenerator().create(array);
53 fail("Creating a collection containing null should fail");
H A DListIndexOfTester.java49 collection = getSubjectGenerator().create(array);
H A DListLastIndexOfTester.java49 collection = getSubjectGenerator().create(array);
H A DListRemoveAllTester.java42 collection = getSubjectGenerator().create(arrayAndDuplicate.elements);
47 assertFalse("after removeAll(e), a collection should not contain e even " +
H A DListRemoveTester.java40 collection = getSubjectGenerator().create(arrayAndDuplicate.elements);
H A DSetAddTester.java49 collection = getSubjectGenerator().create(array);
H A DSetHashCodeTester.java55 collection = getSubjectGenerator().create(elements.toArray());
/external/lldb/include/lldb/Core/
H A DBroadcaster.h114 typedef std::map<BroadcastEventSpec, Listener *> collection; typedef in class:lldb_private::BroadcasterManager
116 collection m_event_map;
453 typedef std::vector< std::pair<Listener*,uint32_t> > collection; typedef in class:lldb_private::Broadcaster
459 collection m_listeners; ///< A list of Listener / event_mask pairs that are listening to this broadcaster.
H A DDisassembler.h191 typedef std::vector<lldb::InstructionSP> collection; typedef in class:lldb_private::InstructionList
192 typedef collection::iterator iterator;
193 typedef collection::const_iterator const_iterator;
195 collection m_instructions;
H A DModuleList.h23 /// @brief A collection class for Module objects.
25 /// Modules in the module collection class are stored as reference
92 /// Appends the module to the collection.
95 /// A shared pointer to a module to add to this collection.
105 /// Replaces the module to the collection.
108 /// A shared pointer to a module to replace in this collection.
141 /// held by any collection classes (like std::vector)
175 /// An index into this module collection.
192 /// An index into this module collection.
207 /// An index into this module collection
530 typedef std::vector<lldb::ModuleSP> collection; ///< The module collection type. typedef in class:lldb_private::ModuleList
[all...]
H A DSection.h29 typedef std::vector<lldb::SectionSP> collection; typedef in class:lldb_private::SectionList
30 typedef collection::iterator iterator;
31 typedef collection::const_iterator const_iterator;
101 collection m_sections;
/external/lldb/include/lldb/Symbol/
H A DUnwindPlan.h336 typedef std::map<uint32_t, RegisterLocation> collection; typedef in class:lldb_private::UnwindPlan::Row
340 collection m_register_locations;
485 typedef std::vector<RowSP> collection; typedef in class:lldb_private::UnwindPlan
486 collection m_row_list;
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.cpp31 collection::const_iterator pos, end = m_collection.end();
/external/lldb/tools/debugserver/source/
H A DRNBRemote.h250 typedef std::vector<Packet> collection; typedef in struct:RNBRemote::Packet
251 typedef collection::iterator iterator;
252 typedef collection::const_iterator const_iterator;
311 Packet::collection m_packets;
/external/guava/guava-tests/test/com/google/common/collect/
H A DConstraintsTest.java76 Collection<String> collection = Lists.newArrayList("foo", "bar");
78 collection, TEST_CONSTRAINT);
79 collection.add(TEST_ELEMENT);
83 ASSERT.that(collection).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog");
88 Collection<String> collection = Lists.newArrayList("foo", "bar");
90 collection, TEST_CONSTRAINT);
100 ASSERT.that(collection).hasContentsInOrder("foo", "bar");
318 * Returns a "nefarious" collection, which permits only one call to
319 * iterator(). This verifies that the constrained collection uses a defensive
323 * @param element the element to be contained in the collection
[all...]
/external/lldb/source/Target/
H A DTargetList.cpp343 collection::iterator pos, end = m_target_list.end();
368 collection::const_iterator pos, end = m_target_list.end();
395 collection::const_iterator pos, end = m_target_list.end();
416 collection::const_iterator pos, end = m_target_list.end();
436 collection::const_iterator pos, end = m_target_list.end();
486 collection::iterator pos, end = m_target_list.end();
554 collection::const_iterator pos,
/external/chromium_org/chrome/browser/ui/panels/
H A Ddocked_panel_collection.cc24 // Width of spacing around panel collection and the left/right edges of the
88 DCHECK_NE(this, panel->collection());
150 DCHECK_EQ(this, panel->collection());
242 DCHECK_EQ(this, panel->collection());
290 DCHECK_EQ(this, panel->collection());
323 DCHECK_EQ(this, panel->collection());
334 DCHECK_EQ(this, panel->collection());
345 DCHECK_EQ(this, panel->collection());
355 DCHECK_EQ(this, panel->collection());
441 DCHECK_EQ(this, panel->collection());
[all...]
H A Dpanel_drag_controller.cc150 // Keep track of original collection and placement for the case that the drag
152 dragging_panel_original_collection_ = dragging_panel_->collection();
187 // At last, handle the drag via its collection's specific handler.
188 switch (dragging_panel_->collection()->type()) {
199 dragging_panel_->collection() == dragging_panel_original_collection_);
211 PanelCollection* current_collection = dragging_panel_->collection();
213 // Restore the dragging panel to its original collection if needed.
254 // If the origianl collection is a stack and it becomes empty, remove it.
299 // It has to come from the docked collection.
300 if (dragging_panel_->collection()
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DCacheTesting.java51 * A collection of utilities for {@link Cache} testing.
58 * Poke into the Cache internals to simulate garbage collection of the value associated with the
78 * Poke into the Cache internals to simulate garbage collection of the given key. This assumes
472 static void checkEmpty(Collection<?> collection) { argument
473 assertTrue(collection.isEmpty());
474 assertEquals(0, collection.size());
475 assertFalse(collection.iterator().hasNext());
476 assertEquals(0, collection.toArray().length);
477 assertEquals(0, collection.toArray(new Object[0]).length);
478 if (collection instanceo
[all...]
/external/chromium_org/device/hid/
H A Dhid_service_mac.cc102 const IOHIDElementRef collection = static_cast<IOHIDElementRef>( local
105 if (IOHIDElementGetParent(collection) == 0) {
108 IOHIDElementGetUsagePage(collection));
109 uint16_t usage = IOHIDElementGetUsage(collection);
112 GetReportIds(collection, &collection_info.report_ids);
/external/guava/guava/src/com/google/common/collect/
H A DIterables.java120 Collection<?> collection = (Collection<?>) iterable;
122 return collection.contains(element);
134 * collection.
137 * collection, and {@link Iterators#removeAll} otherwise.
152 * provided collection.
155 * collection, and {@link Iterators#retainAll} otherwise.
293 Collection<? extends T> collection = toCollection(iterable);
294 T[] array = ObjectArrays.newArray(type, collection.size());
295 return collection.toArray(array);
310 * Converts an iterable into a collection
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer.cc169 LayerAnimatorCollection* collection = GetLayerAnimatorCollection(); local
170 if (collection)
171 child->AddAnimatorsInTreeToCollection(collection);
180 LayerAnimatorCollection* collection = GetLayerAnimatorCollection(); local
181 if (collection)
182 child->RemoveAnimatorsInTreeFromCollection(collection);
1023 LayerAnimatorCollection* collection) {
1024 DCHECK(collection);
1026 animator_->AddToCollection(collection);
1031 collection));
1022 AddAnimatorsInTreeToCollection( LayerAnimatorCollection* collection) argument
1034 RemoveAnimatorsInTreeFromCollection( LayerAnimatorCollection* collection) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java163 * @param collection A Collection.
165 public JSONArray(Collection collection) { argument
166 this.myArrayList = (collection == null) ?
168 new ArrayList(collection);
172 * Construct a JSONArray from a collection of beans.
173 * The collection should have Java Beans.
178 public JSONArray(Collection collection, boolean includeSuperClass) { argument
180 if (collection != null) {
181 Iterator iter = collection.iterator();;
208 throw new JSONException("JSONArray initial value should be a string or collection o
[all...]
/external/lldb/source/Symbol/
H A DUnwindPlan.cpp176 for (collection::const_iterator idx = m_register_locations.begin (); idx != m_register_locations.end (); ++idx)
201 collection::const_iterator pos = m_register_locations.find(reg_num);
241 collection::iterator pos = m_register_locations.find(reg_num);
242 collection::iterator end = m_register_locations.end();
325 collection::const_iterator pos, end = m_row_list.end();
402 collection::const_iterator pos, begin = m_row_list.begin(), end = m_row_list.end();

Completed in 409 milliseconds

1234567891011>>