/external/clang/test/SemaObjC/ |
uninit-variables.m | 23 id collection = 0; 24 for (id obj in collection) { 31 id collection = 0; 33 for (obj in collection) { // no-warning
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
OneSizeTestContainerGenerator.java | 21 import java.util.Collection; 24 * The subject-generator interface accepted by Collection testers, for testing 25 * a Collection at one particular {@link CollectionSize}. 39 Collection<E> getSampleElements(int howMany);
|
MinimalCollection.java | 21 import java.util.Collection; 25 * A simplistic collection which implements only the bare minimum allowed by the 78 @Override public boolean containsAll(Collection<?> collection) { 80 for (Object object : collection) { 87 return super.containsAll(collection); 101 * a "type A" unmodifiable collection freaks out proactively, even if there 105 @Override public boolean addAll(Collection<? extends E> elementsToAdd) { 108 @Override public boolean removeAll(Collection<?> elementsToRemove) { 111 @Override public boolean retainAll(Collection<?> elementsToRetain) [all...] |
/external/llvm/test/YAMLParser/ |
spec-07-10.data | 9 # Root collection:
|
/external/smack/src/org/jivesoftware/smackx/packet/ |
HeadersExtension.java | 17 import java.util.Collection;
33 private Collection<Header> headers = Collections.EMPTY_LIST;
35 public HeadersExtension(Collection<Header> headerList)
41 public Collection<Header> getHeaders()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/ |
de-DE_dbg.txt | 0 # collection of de-DE dbg knowledge bases
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-GB/ |
en-GB_dbg.txt | 0 # collection of en-GB dbg knowledge bases
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/ |
en-US_dbg.txt | 0 # collection of en-US dbg knowledge bases
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/es-ES/ |
es-ES_dbg.txt | 0 # collection of es-ES dbg knowledge bases
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/ |
fr-FR_dbg.txt | 0 # collection of fr-FR dbg knowledge bases
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/ |
it-IT_dbg.txt | 0 # collection of it-IT dbg knowledge bases
|
/libcore/luni/src/test/resources/ |
recipt.dtd | 1 <!ELEMENT collection (description,recipe+)>
|
/libcore/luni/src/test/resources/systemid/ |
recipt.dtd | 1 <!ELEMENT collection (description,recipe+)>
|
/packages/apps/Mms/src/org/w3c/dom/smil/ |
TimeList.java | 17 * collection of times, without defining or constraining how this collection 24 * Returns the <code>index</code> th item in the collection. If 27 * @param index Index into the collection.
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
CollectionContainsTester.java | 30 * collection. Can't be invoked directly; please see 42 collection.contains(samples.e0)); 47 collection.contains(samples.e3)); 53 collection.contains(null)); 67 collection.contains(samples.e3)); 74 assertTrue("contains(null) should return true", collection.contains(null)); 80 collection.contains(WrongType.VALUE));
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
CollectionUtils.java | 23 import java.util.Collection; 77 public static <E> ArrayList<E> newArrayList(final Collection<E> collection) { 78 return new ArrayList<E>(collection); 90 final Collection<E> collection) { 91 return new CopyOnWriteArrayList<E>(collection);
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
ClusterException.java | 22 import java.util.Collection; 57 * <p>See semantic details at {@link #create(Collection)}. 64 public final Collection<? extends Throwable> exceptions; 66 private ClusterException(Collection<? extends Throwable> exceptions) { 76 * @see #create(Collection) 87 * Given a collection of exceptions, returns a {@link RuntimeException}, with 97 * the first exception in the {@code exceptions} collection. 100 * <p>Though this method takes any {@link Collection}, it often makes most 101 * sense to pass a {@link java.util.List} or some other collection that 107 public static RuntimeException create(Collection<? extends Throwable> exceptions) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
ObjectArrays.java | 22 import java.util.Collection; 114 * collection; the runtime type of the returned array is that of the specified 115 * array. If the collection fits in the specified array, it is returned 117 * specified array and the size of the specified collection. 119 * <p>If the collection fits in the specified array with room to spare (i.e., 120 * the array has more elements than the collection), the element in the array 121 * immediately following the end of the collection is set to {@code null}. 122 * This is useful in determining the length of the collection <i>only</i> if 123 * the caller knows that the collection does not contain any null elements. 126 * collection's iterator [all...] |
AbstractSortedSetMultimap.java | 21 import java.util.Collection; 44 protected AbstractSortedSetMultimap(Map<K, Collection<V>> map) { 53 * Returns a collection view of all values associated with a key. If no 54 * mappings in the multimap have the provided key, an empty collection is 57 * <p>Changes to the returned collection will update the underlying multimap, 62 * {@link Collection} specified in the {@link Multimap} interface. 69 * Removes all values associated with a given key. The returned collection is 74 * {@link Collection} specified in the {@link Multimap} interface. 81 * Stores a collection of values with the same key, replacing any existing 82 * values for that key. The returned collection is immutable [all...] |
SortedIterables.java | 24 import java.util.Collection; 42 * Returns {@code true} if {@code elements} is a sorted collection using an ordering equivalent 64 * Returns a sorted collection of the unique elements according to the specified comparator. Does 68 public static <E> Collection<E> sortedUnique( 76 * Returns a sorted collection of the unique elements according to the specified comparator. Does 80 public static <E> Collection<E> sortedUnique( 100 private static <E> Collection<E> uniquifySortedArray( 119 * Returns a collection of multiset entries representing the counts of the distinct elements, in 122 public static <E> Collection<Multiset.Entry<E>> sortedCounts( 130 * Returns a collection of multiset entries representing the counts of the distinct elements, i [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
RobolectricBackgroundExecutorService.java | 5 import java.util.Collection; 68 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables) throws InterruptedException { 73 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException { 78 public <T> T invokeAny(Collection<? extends Callable<T>> callables) throws InterruptedException, ExecutionException { 83 public <T> T invokeAny(Collection<? extends Callable<T>> callables, long l, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
ShadowTreeStyleSheetCollection.cpp | 48 void ShadowTreeStyleSheetCollection::collectStyleSheets(StyleEngine* engine, StyleSheetCollectionBase& collection) 87 collection.appendSheetForList(sheet); 89 collection.appendActiveStyleSheet(activeSheet); 95 StyleSheetCollectionBase collection; local 96 collectStyleSheets(engine, collection); 99 analyzeStyleSheetChange(updateMode, collection, change); 110 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets()); 112 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets()); 119 collection.swap(*this);
|
/external/openfst/src/include/fst/extensions/pdt/ |
collection.h | 0 // collection.h 19 // Class to store a collection of ordered (multi-)sets with elements of type T. 32 // Stores a collection of non-empty, ordered (multi-)sets with elements 38 class Collection { 81 Collection() {} 114 DISALLOW_COPY_AND_ASSIGN(Collection); 117 template<class I, class T> const I Collection<I, T>::kNoNodeId = -1; 119 template <class I, class T> const size_t Collection<I, T>::kPrime = 7853; 121 template <class I, class T> std::tr1::hash<T> Collection<I, T>::hash_;
|
/libcore/luni/src/main/java/java/util/ |
HugeEnumSet.java | 137 public boolean addAll(Collection<? extends E> collection) { 138 if (collection.isEmpty() || collection == this) { 142 if (collection instanceof EnumSet) { 143 EnumSet<?> set = (EnumSet) collection; // raw type due to javac bug 6548436 159 return super.addAll(collection); 210 public boolean containsAll(Collection<?> collection) { 211 if (collection.isEmpty()) [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractSetMultimapTest.java | 23 import java.util.Collection; 62 Map<String, Collection<Integer>> map = multimap.asMap(); 64 Map<String, Collection<Integer>> equalMap = Maps.newHashMap(); 71 Map<String, Collection<Integer>> unequalMap = Maps.newHashMap(); 82 Set<Map.Entry<String, Collection<Integer>>> set 85 Iterator<Map.Entry<String, Collection<Integer>>> i = set.iterator(); 86 Map.Entry<String, Collection<Integer>> expected = 88 "foo", (Collection<Integer>) ImmutableSet.of(1, 3)); 89 Map.Entry<String, Collection<Integer>> entry = i.next(); 106 Collection<Collection<Integer>> asMapValues = multimap.asMap().values() [all...] |