HomeSort by relevance Sort by last modified time
    Searched full:collections (Results 1 - 25 of 2986) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/python/
pyabc.i 4 %pythoncode {import collections};
5 %pythonabc(std::vector, collections.MutableSequence);
6 %pythonabc(std::list, collections.MutableSequence);
7 %pythonabc(std::map, collections.MutableMapping);
8 %pythonabc(std::multimap, collections.MutableMapping);
9 %pythonabc(std::set, collections.MutableSet);
10 %pythonabc(std::multiset, collections.MutableSet);
  /external/hamcrest/library/src/org/hamcrest/collection/
package.html 5 <p>Matchers of arrays and collections.</p>
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
_remote.repositories 3 commons-collections-3.2.1.jar>central=
4 commons-collections-3.2.1.pom>central=
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
Collections2Test.java 28 import java.util.Collections;
52 * java.util.Collections#binarySearch(java.util.List,
59 Collections.sort(lst, null);
60 int index = Collections.binarySearch(lst, new Integer(2), null);
65 * java.util.Collections#binarySearch(java.util.List,
72 assertEquals(-1, Collections.binarySearch(localList, new Object()));
75 Collections.binarySearch(localList, new Integer(1));
83 * java.util.Collections#rotate(java.util.List, int)
87 Collections.rotate(new ArrayList<Object>(), 25);
97 Collections.rotate(list, Integer.MIN_VALUE)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java 20 import java.util.Collections;
30 Enumeration<Object> e = Collections.emptyEnumeration();
41 testEmptyIterator(Collections.emptyIterator());
42 testEmptyIterator(Collections.emptyList().iterator());
43 testEmptyIterator(Collections.emptySet().iterator());
44 testEmptyIterator(Collections.emptyMap().keySet().iterator());
45 testEmptyIterator(Collections.emptyMap().entrySet().iterator());
46 testEmptyIterator(Collections.emptyMap().values().iterator());
65 testEmptyListIterator(Collections.emptyListIterator());
66 testEmptyListIterator(Collections.emptyList().listIterator())
    [all...]
OldCollectionsTest.java 24 import java.util.Collections;
53 * java.util.Collections#binarySearch(java.util.List,
60 Collections.sort(lst, null);
61 int index = Collections.binarySearch(lst, new Integer(2), null);
73 Collections.binarySearch(ll, new Integer(10), null);
81 * java.util.Collections#binarySearch(java.util.List,
88 assertEquals(-1, Collections.binarySearch(localList, new Object()));
91 Collections.binarySearch(localList, new Integer(1));
106 Collections.binarySearch(ll, new Integer(10));
114 * java.util.Collections#rotate(java.util.List, int
    [all...]
  /external/chromium_org/build/android/pylib/gtest/
test_options.py 7 import collections namespace
9 GTestOptions = collections.namedtuple('GTestOptions', [
  /external/chromium_org/build/android/pylib/instrumentation/
test_options.py 7 import collections namespace
9 InstrumentationOptions = collections.namedtuple('InstrumentationOptions', [
  /external/chromium_org/build/android/pylib/monkey/
test_options.py 7 import collections namespace
9 MonkeyOptions = collections.namedtuple('MonkeyOptions', [
  /external/chromium_org/build/android/pylib/perf/
test_options.py 7 import collections namespace
9 PerfOptions = collections.namedtuple('PerfOptions', [
  /external/chromium_org/build/android/pylib/uiautomator/
test_options.py 7 import collections namespace
9 UIAutomatorOptions = collections.namedtuple('UIAutomatorOptions', [
  /external/chromium_org/v8/test/perf-test/Collections/
Collections.json 4 "flags": ["--harmony-collections"],
7 "results_regexp": "^%s\\-Collections\\(Score\\): (.+)$",
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 234 class Collections;
235 class Collections$CopiesList;
236 class Collections$EmptyList;
237 class Collections$EmptyMap;
238 class Collections$EmptySet;
239 class Collections$ReverseComparator;
240 class Collections$SingletonList;
241 class Collections$SingletonMap;
242 class Collections$SingletonSet;
243 class Collections$SynchronizedCollection
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 6 This converts callable(obj) into isinstance(obj, collections.Callable), adding a
7 collections import if needed."""
33 touch_import(None, u'collections', node=node)
36 args.extend(Attr(Name(u'collections'), Name(u'Callable')))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_callable.py 6 This converts callable(obj) into isinstance(obj, collections.Callable), adding a
7 collections import if needed."""
33 touch_import(None, u'collections', node=node)
36 args.extend(Attr(Name(u'collections'), Name(u'Callable')))
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForListsInJavaUtil.java 32 import java.util.Collections;
66 return Collections.emptySet();
69 return Collections.emptySet();
72 return Collections.emptySet();
75 return Collections.emptySet();
78 return Collections.emptySet();
81 return Collections.emptySet();
84 return Collections.emptySet();
87 return Collections.emptySet();
90 return Collections.emptySet()
    [all...]
  /external/mockito/src/org/mockito/internal/verification/
RegisteredInvocations.java 9 import org.mockito.internal.util.collections.ListUtil;
10 import org.mockito.internal.util.collections.ListUtil.Filter;
SingleRegisteredInvocation.java 11 import java.util.Collections;
27 return Collections.emptyList();
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_map.i 6 * The C# wrapper is made to look and feel like a C# System.Collections.Generic.IDictionary<>.
31 %typemap(csinterfaces) std::map< K, T, C > "IDisposable \n#if !SWIG_DOTNET_1\n , System.Collections.Generic.IDictionary<$typemap(cstype, K), $typemap(cstype, T)>\n#endif\n";
67 public System.Collections.Generic.ICollection<$typemap(cstype, K)> Keys {
69 System.Collections.Generic.ICollection<$typemap(cstype, K)> keys = new System.Collections.Generic.List<$typemap(cstype, K)>();
82 public System.Collections.Generic.ICollection<$typemap(cstype, T)> Values {
84 System.Collections.Generic.ICollection<$typemap(cstype, T)> vals = new System.Collections.Generic.List<$typemap(cstype, T)>();
85 foreach (System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> pair in this) {
92 public void Add(System.Collections.Generic.KeyValuePair<$typemap(cstype, K), $typemap(cstype, T)> item)
    [all...]
  /cts/tools/signature-tools/src/signature/io/html/
ClassOverviewPage.java 20 import java.util.Collections;
99 Collections.sort(removedFields, fieldComparator);
103 Collections.sort(addedFields, fieldComparator);
107 Collections.sort(changedFields, fieldComparator);
113 Collections.sort(removedAnnotationFields, annotationfieldComparator);
117 Collections.sort(addedAnnotationFields, annotationfieldComparator);
121 Collections.sort(changedAnnotationFields, annotationfieldComparator);
127 Collections.sort(removedEnumConstants, enumConstantComparator);
131 Collections.sort(addedEnumConstants, enumConstantComparator);
135 Collections.sort(changedEnumConstants, enumConstantComparator)
    [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
CollectionUtil.java 8 import java.util.Collections;
12 * Functions used for easier initialization of Java collections. Inspired by
23 Collections.addAll(set, elements);
30 Collections.addAll(list, elements);
  /external/llvm/test/YAMLParser/
spec-08-09.data 9 collections:
spec-08-10.data 11 collections: !!map
  /external/mockito/src/org/mockito/internal/util/collections/
ArrayUtils.java 5 package org.mockito.internal.util.collections;

Completed in 750 milliseconds

1 2 3 4 5 6 7 8 91011>>