Searched refs:collection (Results 201 - 225 of 367) sorted by relevance

1234567891011>>

/external/chromium_org/media/audio/win/
H A Dcore_audio_util_win_unittest.cc157 ScopedComPtr<IMMDeviceCollection> collection; local
159 DEVICE_STATE_ACTIVE, collection.Receive())));
161 collection->GetCount(&count);
164 collection->Item(j, device.Receive());
496 ScopedComPtr<IMMDeviceCollection> collection; local
498 DEVICE_STATE_ACTIVE, collection.Receive())));
500 collection->GetCount(&count);
503 collection->Item(i, device.Receive());
/external/lldb/include/lldb/Core/
H A DValue.h307 typedef std::vector<Value> collection; typedef in class:lldb_private::ValueList
309 collection m_values;
/external/lldb/include/lldb/Symbol/
H A DSymbolContext.h550 typedef std::vector<SymbolContext> collection; ///< The collection type for the list. typedef in class:lldb_private::SymbolContextList
555 collection m_symbol_contexts; ///< The list of symbol contexts.
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp102 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
152 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertStore_ImplTest.java88 Collection collection = certS.getCertificates(certSelector);
89 assertNull("Not null collection", collection);
90 collection = certS.getCRLs(crlSelector);
91 assertNull("Not null collection", collection);
/external/guava/guava/src/com/google/common/primitives/
H A DBooleans.java293 * Copies a collection of {@code Boolean} instances into a new array of
296 * <p>Elements are copied from the argument collection as if by {@code
297 * collection.toArray()}. Calling this method is as thread-safe as calling
300 * <p><b>Note:</b> consider representing the collection as a {@link
303 * @param collection a collection of {@code Boolean} objects
304 * @return an array containing the same values as {@code collection}, in the
306 * @throws NullPointerException if {@code collection} or any of its elements
309 public static boolean[] toArray(Collection<Boolean> collection) { argument
310 if (collection instanceo
[all...]
H A DChars.java412 * Copies a collection of {@code Character} instances into a new array of
415 * <p>Elements are copied from the argument collection as if by {@code
416 * collection.toArray()}. Calling this method is as thread-safe as calling
419 * @param collection a collection of {@code Character} objects
420 * @return an array containing the same values as {@code collection}, in the
422 * @throws NullPointerException if {@code collection} or any of its elements
425 public static char[] toArray(Collection<Character> collection) { argument
426 if (collection instanceof CharArrayAsList) {
427 return ((CharArrayAsList) collection)
[all...]
H A DDoubles.java355 * Copies a collection of {@code Double} instances into a new array of
358 * <p>Elements are copied from the argument collection as if by {@code
359 * collection.toArray()}. Calling this method is as thread-safe as calling
362 * @param collection a collection of {@code Double} objects
363 * @return an array containing the same values as {@code collection}, in the
365 * @throws NullPointerException if {@code collection} or any of its elements
368 public static double[] toArray(Collection<Double> collection) { argument
369 if (collection instanceof DoubleArrayAsList) {
370 return ((DoubleArrayAsList) collection)
[all...]
H A DFloats.java352 * Copies a collection of {@code Float} instances into a new array of
355 * <p>Elements are copied from the argument collection as if by {@code
356 * collection.toArray()}. Calling this method is as thread-safe as calling
359 * @param collection a collection of {@code Float} objects
360 * @return an array containing the same values as {@code collection}, in the
362 * @throws NullPointerException if {@code collection} or any of its elements
365 public static float[] toArray(Collection<Float> collection) { argument
366 if (collection instanceof FloatArrayAsList) {
367 return ((FloatArrayAsList) collection)
[all...]
H A DInts.java419 * Copies a collection of {@code Integer} instances into a new array of
422 * <p>Elements are copied from the argument collection as if by {@code
423 * collection.toArray()}. Calling this method is as thread-safe as calling
426 * @param collection a collection of {@code Integer} objects
427 * @return an array containing the same values as {@code collection}, in the
429 * @throws NullPointerException if {@code collection} or any of its elements
432 public static int[] toArray(Collection<Integer> collection) { argument
433 if (collection instanceof IntArrayAsList) {
434 return ((IntArrayAsList) collection)
[all...]
H A DLongs.java404 * Copies a collection of {@code Long} instances into a new array of
407 * <p>Elements are copied from the argument collection as if by {@code
408 * collection.toArray()}. Calling this method is as thread-safe as calling
411 * @param collection a collection of {@code Long} objects
412 * @return an array containing the same values as {@code collection}, in the
414 * @throws NullPointerException if {@code collection} or any of its elements
417 public static long[] toArray(Collection<Long> collection) { argument
418 if (collection instanceof LongArrayAsList) {
419 return ((LongArrayAsList) collection)
[all...]
H A DShorts.java417 * Copies a collection of {@code Short} instances into a new array of
420 * <p>Elements are copied from the argument collection as if by {@code
421 * collection.toArray()}. Calling this method is as thread-safe as calling
424 * @param collection a collection of {@code Short} objects
425 * @return an array containing the same values as {@code collection}, in the
427 * @throws NullPointerException if {@code collection} or any of its elements
430 public static short[] toArray(Collection<Short> collection) { argument
431 if (collection instanceof ShortArrayAsList) {
432 return ((ShortArrayAsList) collection)
[all...]
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DChars.java361 * Copies a collection of {@code Character} instances into a new array of
364 * <p>Elements are copied from the argument collection as if by {@code
365 * collection.toArray()}. Calling this method is as thread-safe as calling
368 * @param collection a collection of {@code Character} objects
369 * @return an array containing the same values as {@code collection}, in the
371 * @throws NullPointerException if {@code collection} or any of its elements
374 public static char[] toArray(Collection<Character> collection) { argument
375 if (collection instanceof CharArrayAsList) {
376 return ((CharArrayAsList) collection)
[all...]
H A DInts.java363 * Copies a collection of {@code Integer} instances into a new array of
366 * <p>Elements are copied from the argument collection as if by {@code
367 * collection.toArray()}. Calling this method is as thread-safe as calling
370 * @param collection a collection of {@code Integer} objects
371 * @return an array containing the same values as {@code collection}, in the
373 * @throws NullPointerException if {@code collection} or any of its elements
376 public static int[] toArray(Collection<Integer> collection) { argument
377 if (collection instanceof IntArrayAsList) {
378 return ((IntArrayAsList) collection)
[all...]
H A DLongs.java337 * Copies a collection of {@code Long} instances into a new array of
340 * <p>Elements are copied from the argument collection as if by {@code
341 * collection.toArray()}. Calling this method is as thread-safe as calling
344 * @param collection a collection of {@code Long} objects
345 * @return an array containing the same values as {@code collection}, in the
347 * @throws NullPointerException if {@code collection} or any of its elements
350 public static long[] toArray(Collection<Long> collection) { argument
351 if (collection instanceof LongArrayAsList) {
352 return ((LongArrayAsList) collection)
[all...]
H A DShorts.java365 * Copies a collection of {@code Short} instances into a new array of
368 * <p>Elements are copied from the argument collection as if by {@code
369 * collection.toArray()}. Calling this method is as thread-safe as calling
372 * @param collection a collection of {@code Short} objects
373 * @return an array containing the same values as {@code collection}, in the
375 * @throws NullPointerException if {@code collection} or any of its elements
378 public static short[] toArray(Collection<Short> collection) { argument
379 if (collection instanceof ShortArrayAsList) {
380 return ((ShortArrayAsList) collection)
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListAddTester.java66 collection = getSubjectGenerator().create(array);
H A DSetEqualsTester.java60 collection = getSubjectGenerator().create(elements.toArray());
/external/chromium_org/base/
H A Dstl_util.h193 // Returns true if the key is in the collection.
195 bool ContainsKey(const Collection& collection, const Key& key) { argument
196 return collection.find(key) != collection.end();
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dstl_util.h200 // Returns true if the key is in the collection.
202 bool ContainsKey(const Collection& collection, const Key& key) { argument
203 return collection.find(key) != collection.end();
/external/chromium_org/ui/message_center/views/
H A Dtoast_contents_view.cc52 base::WeakPtr<MessagePopupCollection> collection)
53 : collection_(collection),
67 CreateWidget(collection->parent());
50 ToastContentsView( const std::string& notification_id, base::WeakPtr<MessagePopupCollection> collection) argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DCookiesTest.java329 private void assertContains(Collection<String> collection, String element) { argument
330 for (String c : collection) {
335 fail("No " + element + " in " + collection);
338 private void assertContainsAll(Collection<String> collection, String... toFind) { argument
340 assertContains(collection, s);
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DConfigureForm.java121 * The id's of the child nodes associated with a collection node (both leaf and collection).
131 * Set the list of child node ids that are associated with a collection node.
171 * with the collection node. This is only relevant if {@link #getChildrenAssociationPolicy()} is set to
182 * Set the JID's in the whitelist of users that can associate child nodes with the collection
195 * Gets the maximum number of child nodes that can be associated with the collection node.
205 * Set the maximum number of child nodes that can be associated with a collection node.
216 * Gets the collection node which the node is affiliated with.
218 * @return The collection node id
222 return getFieldValue(ConfigureNodeFields.collection);
230 setCollection(String collection) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java117 Collection<?> collection = (Collection<?>) iterable;
119 return collection.contains(element);
131 * collection.
134 * collection, and {@link Iterators#removeAll} otherwise.
149 * provided collection.
152 * collection, and {@link Iterators#retainAll} otherwise.
292 * Converts an iterable into a collection. If the iterable is already a
293 * collection, it is returned. Otherwise, an {@link java.util.ArrayList} is
303 * Adds all elements in {@code iterable} to {@code collection}.
305 * @return {@code true} if {@code collection} wa
[all...]
/external/guava/guava-tests/test/com/google/common/cache/
H A DPopulatedCachesTest.java372 private void assertCollectionSize(Collection<?> collection, int size) { argument
373 assertEquals(size, collection.size());
375 assertFalse(collection.isEmpty());
377 assertTrue(collection.isEmpty());
379 assertEquals(size, Iterables.size(collection));
380 assertEquals(size, Iterators.size(collection.iterator()));

Completed in 605 milliseconds

1234567891011>>