Searched refs:collection (Results 226 - 250 of 367) sorted by relevance

1234567891011>>

/external/lldb/source/Symbol/
H A DBlock.cpp126 collection::const_iterator pos, end = m_children.end();
143 collection::const_iterator pos, end = m_children.end();
503 collection::const_iterator pos, end = m_children.end();
581 collection::const_iterator pos, end = m_children.end();
593 collection::const_iterator pos, end = m_children.end();
618 collection::const_iterator pos, end = m_children.end();
H A DTypeList.cpp246 // Our "collection" type currently is a std::map which doesn't
250 collection matching_types;
340 // Our "collection" type currently is a std::map which doesn't
344 collection matching_types;
/external/chromium_org/android_webview/renderer/
H A Daw_render_view_ext.cc61 blink::WebElementCollection collection = local
63 DCHECK(!collection.isNull());
64 return collection.firstItem();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashSet.h263 inline void copyToVector(const C& collection, W& vector) argument
267 vector.resize(collection.size());
269 iterator it = collection.begin();
270 iterator end = collection.end();
H A DHashMap.h470 inline void copyKeysToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector) argument
474 vector.resize(collection.size());
476 iterator it = collection.begin().keys();
477 iterator end = collection.end().keys();
483 inline void copyValuesToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector) argument
487 vector.resize(collection.size());
489 iterator it = collection.begin().values();
490 iterator end = collection.end().values();
/external/chromium_org/tools/mac/
H A Dsymbolicate_crash.py293 # Create the collection and initialize it with empty lists for each image.
294 collection = {}
296 collection[image] = []
305 collection[frame.image].append((frame, frame.address))
308 return collection
/external/guava/guava/src/com/google/common/collect/
H A DImmutableList.java41 * separate collection that can still change, an instance of {@code
236 * or concurrent collection that is currently being modified by another
277 Collection<? extends E> collection) {
278 Object[] elements = collection.toArray();
283 @SuppressWarnings("unchecked") // collection had only Es in it
585 Collection<?> collection = (Collection<?>) elements;
586 contents.ensureCapacity(contents.size() + collection.size());
276 copyFromCollection( Collection<? extends E> collection) argument
H A DImmutableSet.java40 * separate collection that can still change, an instance of this class contains
48 * only immutable objects into this collection.
228 checkArgument(setSize < MAX_TABLE_SIZE, "collection too large");
314 * or concurrent collection that is currently being modified by another
333 Collection<? extends E> collection) {
334 Object[] elements = collection.toArray();
339 @SuppressWarnings("unchecked") // collection had only Es in it
601 Collection<?> collection = (Collection<?>) elements;
602 contents.ensureCapacity(contents.size() + collection.size());
332 copyFromCollection( Collection<? extends E> collection) argument
H A DMaps.java277 * when accessing any of its collection views: <pre> {@code
629 * keyFunction} on each value in the input collection to that value
631 * key for more than one value in the input collection
666 * keyFunction} on each value in the input collection to that value
668 * key for more than one value in the input collection
798 Collection<? extends Entry<K, V>> collection) {
810 @Override public boolean removeAll(Collection<?> collection) { argument
814 @Override public boolean retainAll(Collection<?> collection) { argument
849 * attempts to modify the returned map, whether direct or via its collection
1653 @Override public boolean removeAll(Collection<?> collection) { argument
797 addAll( Collection<? extends Entry<K, V>> collection) argument
1667 retainAll(Collection<?> collection) argument
1882 removeAll(Collection<?> collection) argument
1891 retainAll(Collection<?> collection) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListEqualsTester.java66 collection = getSubjectGenerator().create(elements.toArray());
H A DListSetTester.java59 collection = getSubjectGenerator().create(elements);
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsMapContaining.java1 package org.hamcrest.collection;
/external/stlport/test/unit/
H A Dhash_test.cpp188 // key in in a set ("collection"). Notice that data is unique by construction in main(), thus the
190 // (c) We check if we have seen as many data elements in collection as we have seen in the multimap.
201 set<int> collection; local
211 collection.insert( j->second );
216 if (collection.size() == h.size()) cout << " OK" << endl;
243 CPPUNIT_CHECK( collection.size() == h.size() );
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java274 * when accessing any of its collection views: <pre> {@code
626 * keyFunction} on each value in the input collection to that value
628 * key for more than one value in the input collection
663 * keyFunction} on each value in the input collection to that value
665 * key for more than one value in the input collection
769 Collection<? extends Entry<K, V>> collection) {
781 @Override public boolean removeAll(Collection<?> collection) { argument
785 @Override public boolean retainAll(Collection<?> collection) { argument
820 * attempts to modify the returned map, whether direct or via its collection
1624 @Override public boolean removeAll(Collection<?> collection) { argument
768 addAll( Collection<? extends Entry<K, V>> collection) argument
1638 retainAll(Collection<?> collection) argument
1853 removeAll(Collection<?> collection) argument
1862 retainAll(Collection<?> collection) argument
[all...]
H A DImmutableSet.java205 Collection<?> collection = (Collection<?>) elements;
206 contents.ensureCapacity(contents.size() + collection.size());
/external/chromium_org/media/audio/win/
H A Dcore_audio_util_win.cc214 // Generate a collection of active (present and not disabled) audio endpoint
217 ScopedComPtr<IMMDeviceCollection> collection;
220 collection.Receive());
228 collection->GetCount(&number_of_active_devices);
409 ScopedComPtr<IMMDeviceCollection> collection;
411 collection.Receive());
412 if (!collection)
416 collection->GetCount(&count);
419 collection->Item(i, output_device.Receive());
/external/chromium_org/ui/compositor/
H A Dlayer_animator.h192 void AddToCollection(LayerAnimatorCollection* collection);
193 void RemoveFromCollection(LayerAnimatorCollection* collection);
/external/guava/guava-tests/test/com/google/common/eventbus/
H A DEventBusTest.java212 private <T> void assertContains(T element, Collection<T> collection) { argument
214 collection.contains(element));
/external/lldb/include/lldb/Interpreter/
H A DCommandCompletions.h295 typedef std::set<ConstString> collection; typedef in class:lldb_private::CommandCompletions::SymbolCompleter
296 collection m_match_set;
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DAbstractMessageLite.java317 Collection<T> collection = (Collection<T>) values;
318 list.addAll(collection);
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMultimapTest.java265 Collection<Integer> collection = Lists.newArrayList(1, 3);
266 multimap.putAll("foo", collection);
278 Collection<Integer> collection = Lists.newArrayList(1, nullValue());
279 multimap.putAll(nullKey(), collection);
286 Collection<Integer> collection = Lists.newArrayList();
287 multimap.putAll("foo", collection);
325 private void checkRemovedCollection(Collection<Integer> collection) { argument
327 collection.add(9876);
328 collection.remove(9876);
329 assertFalse(collection
[all...]
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Diphoto_file_util.cc40 bool ContainsElement(const std::vector<T>& collection, const T& key) { argument
41 typename std::vector<T>::const_iterator it = collection.begin();
42 while (it != collection.end()) {
/external/chromium_org/ui/message_center/views/
H A Dmessage_popup_collection_unittest.cc52 MessagePopupCollection* collection() { return collection_.get(); } function in class:message_center::test::MessagePopupCollectionTest
169 collection()->OnMouseExited(GetToast(id2));
408 static_cast<MessageCenterObserver*>(collection())->OnNotificationRemoved(
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp249 MachThreadList::UpdateThreadList(MachProcess *process, bool update, MachThreadList::collection *new_threads)
286 MachThreadList::collection currThreads;
376 MachThreadList::collection new_threads;
/external/chromium_org/content/browser/appcache/
H A Dappcache_service_impl.h107 AppCacheInfoCollection* collection,

Completed in 648 milliseconds

1234567891011>>