/libcore/luni/src/test/resources/ |
recipe.xml | 2 <!DOCTYPE collection SYSTEM "./recipt.dtd"> 4 <collection> 23 </collection>
|
recipe1.xml | 2 <!DOCTYPE collection SYSTEM "./recipt.dtd"> 4 <collection> 23 </collection>
|
recipt.xml | 2 <!DOCTYPE collection SYSTEM "./recipt.dtd"> 4 <collection> 23 </collection>
|
reciptWrong.xml | 2 <!DOCTYPE collection SYSTEM "./recipt.dtd"> 4 <collection> 20 </collection>
|
systemid.xml | 2 <!DOCTYPE collection SYSTEM "./recipt.dtd"> 4 <collection> 23 </collection>
|
/external/guava/guava/src/com/google/common/collect/ |
Constraints.java | 24 import java.util.Collection; 69 * Returns a constrained view of the specified collection, using the specified 70 * constraint. Any operations that add new elements to the collection will 74 * <p>The returned collection is not serializable. 76 * @param collection the collection to constrain 78 * @return a constrained view of the collection 80 public static <E> Collection<E> constrainedCollection( 81 Collection<E> collection, Constraint<? super E> constraint) [all...] |
Multimaps.java | 42 import java.util.Collection; 72 * {@link Collection} classes. 107 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, 108 final Supplier<? extends Collection<V>> factory) { 113 transient Supplier<? extends Collection<V>> factory; 115 CustomMultimap(Map<K, Collection<V>> map, 116 Supplier<? extends Collection<V>> factory) { 121 @Override protected Collection<V> createCollection() { 141 factory = (Supplier<? extends Collection<V>>) stream.readObject(); 142 Map<K, Collection<V>> map = (Map<K, Collection<V>>) stream.readObject() [all...] |
/external/clang/test/SemaObjCXX/ |
foreach.mm | 19 template<typename Collection> 20 void ft(Collection col) { 50 NSObject<NSFastEnumeration>* collection = 0; 51 for (id thing : collection) { } 66 void test2(NSObject<NSFastEnumeration> *collection) { 68 for (obj.prop : collection) { // expected-error {{for range declaration must declare a variable}} \
|
/external/junit/src/org/junit/internal/matchers/ |
IsCollectionContaining.java | 7 import java.util.Collection; 22 public boolean matchesSafely(Iterable<T> collection) { 23 for (T item : collection) { 33 .appendText("a collection containing ") 49 Collection<Matcher<? extends Iterable<T>>> all 59 Collection<Matcher<? extends Iterable<T>>> all
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RootsLoader.java | 25 import java.util.Collection; 27 public class RootsLoader extends AsyncTaskLoader<Collection<RootInfo>> { 33 private Collection<RootInfo> mResult; 45 public final Collection<RootInfo> loadInBackground() { 50 public void deliverResult(Collection<RootInfo> result) { 54 Collection<RootInfo> oldResult = mResult;
|
/external/nist-sip/java/javax/sip/ |
SipStack.java | 3 import java.util.Collection; 24 Collection getDialogs();
|
/libcore/luni/src/main/java/java/util/ |
LinkedHashSet.java | 73 * elements in the specified collection. 75 * @param collection 76 * the collection of elements to add. 78 public LinkedHashSet(Collection<? extends E> collection) { 79 super(new LinkedHashMap<E, HashSet<E>>(collection.size() < 6 ? 11 80 : collection.size() * 2)); 81 for (E e : collection) {
|
AbstractSet.java | 86 * Removes all occurrences in this collection which are contained in the 87 * specified collection. 89 * @param collection 90 * the collection of objects to remove. 91 * @return {@code true} if this collection was modified, {@code false} 94 * if removing from this collection is not supported. 97 public boolean removeAll(Collection<?> collection) { 99 if (size() <= collection.size()) { 102 if (collection.contains(it.next())) [all...] |
/external/chromium/chrome/browser/chromeos/notifications/ |
notification_browsertest.cc | 140 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 145 collection->Add(NewMockNotification("1"), browser()->profile()); 152 collection->Add(NewMockNotification("2"), browser()->profile()); 158 collection->RemoveById("1"); 165 collection->RemoveById("2"); 179 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 186 collection->Add(NewMockNotification("1"), browser()->profile()); 187 collection->Add(NewMockNotification("2"), browser()->profile()); 194 collection->RemoveById("1"); 200 collection->Add(NewMockNotification("1"), browser()->profile()) 227 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 264 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 307 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 374 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 388 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 417 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 492 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 525 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 548 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local 579 BalloonCollectionImpl* collection = GetBalloonCollectionImpl(); local [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionRemoveAllTester.java | 34 * collection. Can't be invoked directly; please see 47 collection.removeAll(MinimalCollection.of())); 54 collection.removeAll(MinimalCollection.of(samples.e3))); 62 collection.removeAll(MinimalCollection.of(samples.e0))); 70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); 81 collection.removeAll(MinimalCollection.of( 92 collection.removeAll(MinimalCollection.of())); 103 collection.removeAll(MinimalCollection.of(samples.e3))); 113 collection.removeAll(MinimalCollection.of(samples.e0)); 119 assertTrue(collection.contains(samples.e0)) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingQueueTest.java | 29 import java.util.Collection; 53 @Override public boolean addAll(Collection<? extends T> collection) { 54 return standardAddAll(collection); 65 @Override public boolean containsAll(Collection<?> collection) { 66 return standardContainsAll(collection); 73 @Override public boolean removeAll(Collection<?> collection) { 74 return standardRemoveAll(collection); [all...] |
ForwardingSetTest.java | 30 import java.util.Collection; 61 @Override public boolean addAll(Collection<? extends T> collection) { 62 return standardAddAll(collection); 73 @Override public boolean containsAll(Collection<?> collection) { 74 return standardContainsAll(collection); 81 @Override public boolean removeAll(Collection<?> collection) { 82 return standardRemoveAll(collection); [all...] |
/frameworks/support/v4/java/android/support/v4/util/ |
ArrayMap.java | 19 import java.util.Collection; 124 * Determine if the array map contains all of the keys in the given collection. 125 * @param collection The collection whose contents are to be checked against. 127 * in <var>collection</var>, else returns false. 129 public boolean containsAll(Collection<?> collection) { 130 return MapCollections.containsAllHelper(this, collection); 146 * Remove all keys in the array map that exist in the given collection. 147 * @param collection The collection whose contents are to be used to remove keys [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Multimaps.java | 38 import java.util.Collection; 68 * {@link Collection} classes. 103 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, 104 final Supplier<? extends Collection<V>> factory) { 109 transient Supplier<? extends Collection<V>> factory; 111 CustomMultimap(Map<K, Collection<V>> map, 112 Supplier<? extends Collection<V>> factory) { 117 @Override protected Collection<V> createCollection() { 164 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { 172 CustomListMultimap(Map<K, Collection<V>> map [all...] |
/dalvik/dx/tests/118-find-usages/ |
expected.txt | 7 Collection.remove()
|
/external/chromium_org/content/test/data/accessibility/ |
dl-expected-android.txt | 2 android.widget.ListView collection hierarchical item_count=2 row_count=2
|
/external/chromium_org/remoting/base/ |
breakpad_linux.cc | 10 // TODO(alexeypa) Implement crash dump collection on Linux; see
|
/external/chromium_org/tools/perf/page_sets/ |
tough_image_cases.json | 2 "description": "A collection of image-heavy sites.",
|
tough_texture_upload_cases.json | 2 "description": "A collection of texture upload performance tests",
|
/external/clang/test/SemaObjC/ |
foreach.m | 43 NSObject<NSFastEnumeration>* collection = ((void*)0); 44 for (id thing in collection) { } /* expected-warning {{unused variable 'thing'}} */ 53 void test2(NSObject<NSFastEnumeration> *collection) { 55 for (obj.prop in collection) { /* expected-error {{selector element is not a valid lvalue}} */
|