HomeSort by relevance Sort by last modified time
    Searched full:collection (Results 101 - 125 of 3911) sorted by null

1 2 3 45 6 7 8 91011>>

  /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...]