HomeSort by relevance Sort by last modified time
    Searched refs:collection (Results 176 - 200 of 413) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Extensions.java 28 import java.util.Collection;
276 * @return Returns the collection of pairs:
280 public Collection<List<?>> valueOfSubjectAlternativeName() throws IOException {
295 * @return Returns the collection of pairs:
299 public Collection<List<?>> valueOfIssuerAlternativeName() throws IOException {
307 private static Collection<List<?>> decodeGeneralNames(Extension extension)
313 Collection<List<?>> collection = ((GeneralNames) GeneralNames.ASN1.decode(extension local
318 * collection at this point, so just return null.
320 if (collection.size() == 0)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ConfigureForm.java 121 * 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);
233 setAnswer(ConfigureNodeFields.collection.getFieldName(), collection); local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 31 import java.util.Collection;
105 return (iterable instanceof Collection)
106 ? ((Collection<?>) iterable).size()
116 if (iterable instanceof Collection) {
117 Collection<?> collection = (Collection<?>) iterable; local
119 return collection.contains(element);
131 * collection.
133 * <p>This method calls {@link Collection#removeAll} if {@code iterable} is
    [all...]
Maps.java 39 import java.util.Collection;
274 * 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
735 private final Collection<Entry<K, V>> entries;
737 UnmodifiableEntries(Collection<Entry<K, V>> entries) {
741 @Override protected Collection<Entry<K, V>> delegate() {
769 Collection<? extends Entry<K, V>> collection)
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java 39 import java.util.Collection;
223 Collection<Object> values = cache.asMap().values();
372 private void assertCollectionSize(Collection<?> collection, int size) {
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()));
  /frameworks/base/core/java/android/util/
ArrayMap.java 19 import java.util.Collection;
692 // specialized collection APIs.
748 * Determine if the array map contains all of the keys in the given collection.
749 * @param collection The collection whose contents are to be checked against.
751 * in <var>collection</var>, else returns false.
753 public boolean containsAll(Collection<?> collection) {
754 return MapCollections.containsAllHelper(this, collection);
770 * Remove all keys in the array map that exist in the given collection
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideshowModel.java 26 import java.util.Collection;
420 public boolean addAll(Collection<? extends SlideModel> collection) {
442 public boolean containsAll(Collection<?> collection) {
443 return mSlides.containsAll(collection);
465 public boolean removeAll(Collection<?> collection) {
469 public boolean retainAll(Collection<?> collection) {
    [all...]
  /external/chromium/base/
stl_util-inl.h 446 // Returns true if the key is in the collection.
447 template <typename Collection, typename Key>
448 bool ContainsKey(const Collection& collection, const Key& key) {
449 return collection.find(key) != collection.end();
tracked_objects.cc 176 DataCollector::Collection* collection = collected_data.collection(); local
183 DataCollector::Collection match_array;
184 for (DataCollector::Collection::iterator it = collection->begin();
185 it != collection->end(); ++it) {
230 const DataCollector::Collection& match_array,
635 DataCollector::Collection* DataCollector::collection() { function in class:tracked_objects::DataCollector
    [all...]
tracked_objects.h 80 // collection of DeathData instances. For each birth place Location that is
157 // For a specific thread, and a specific birth place, the collection of all
246 // A temporary collection of data that can be sorted and summarized. It is
290 typedef std::vector<Snapshot> Collection;
304 Collection* collection();
306 // After collection of death data is complete, we can add entries for all the
320 Collection collection_;
401 void Sort(DataCollector::Collection* collection) const
    [all...]
  /external/chromium/chrome/browser/chromeos/notifications/
notification_panel.h 232 BalloonViewImpl* GetBalloonView(BalloonCollectionImpl* collection,
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.h 56 explicit BalloonViewImpl(BalloonCollection* collection);
134 // Non-owned pointer to the balloon collection this is a part of.
  /external/chromium_org/chrome/browser/ui/views/notifications/
balloon_view_views.h 47 explicit BalloonViewImpl(BalloonCollection* collection);
126 // Non-owned pointer to the balloon collection this is a part of.
  /external/chromium_org/tools/mac/
symbolicate_crash.py 293 # 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/chromium_org/webkit/browser/appcache/
appcache_service.h 41 // Refcounted container to avoid copying the collection in callbacks.
78 // Populates 'collection' with info about all of the appcaches stored
80 // acquires a reference to the 'collection' until until completion.
82 void GetAllAppCacheInfo(AppCacheInfoCollection* collection,
  /external/guava/guava/src/com/google/common/collect/
ImmutableList.java 28 import java.util.Collection;
41 * separate collection that can still change, an instance of {@code
209 * {@code elements} is a {@link Collection}, this method behaves exactly as
210 * {@link #copyOf(Collection)}; otherwise, it behaves exactly as {@code
217 return (elements instanceof Collection)
236 * or concurrent collection that is currently being modified by another
241 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) {
277 Collection<? extends E> collection) {
278 Object[] elements = collection.toArray()
    [all...]
ImmutableSet.java 27 import java.util.Collection;
40 * 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");
271 return (elements instanceof Collection)
314 * or concurrent collection that is currently being modified by another
320 public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) {
333 Collection<? extends E> collection) {
334 Object[] elements = collection.toArray()
    [all...]
Maps.java 40 import java.util.Collection;
277 * 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
764 private final Collection<Entry<K, V>> entries;
766 UnmodifiableEntries(Collection<Entry<K, V>> entries) {
770 @Override protected Collection<Entry<K, V>> delegate() {
798 Collection<? extends Entry<K, V>> collection)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListEqualsTester.java 26 import java.util.Collection;
66 collection = getSubjectGenerator().create(elements.toArray());
75 Collection<E> fewerElements = getSampleElements(getNumElements() - 1);
81 Collection<E> moreElements = getSampleElements(getNumElements() + 1);
ListSetTester.java 59 collection = getSubjectGenerator().create(elements);
139 * java.util.Collections#checkedCollection(java.util.Collection, Class)} can
  /external/stlport/test/unit/
hash_test.cpp 188 // 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() );
  /ndk/tests/device/test-gnustl-full/unit/
hash_test.cpp 188 // 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() );
  /ndk/tests/device/test-stlport/unit/
hash_test.cpp 188 // 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/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 37 import java.util.Collection;
317 final Collection<? super T> list) {
325 if (values instanceof Collection) {
326 final Collection<T> collection = (Collection<T>) values; local
327 list.addAll(collection);
  /external/chromium_org/ui/message_center/views/
toast_contents_view.cc 46 base::WeakPtr<MessagePopupCollection> collection,
48 : collection_(collection),

Completed in 1054 milliseconds

1 2 3 4 5 6 78 91011>>