Searched refs:Collection (Results 1 - 25 of 1061) sorted by relevance

1234567891011>>

/external/testng/src/main/java/org/testng/xml/
H A DIPostProcessor.java3 import java.util.Collection;
12 Collection<XmlSuite> process(Collection<XmlSuite> suites);
/external/libtextclassifier/util/gtl/
H A Dmap_util.h31 template <class Collection>
32 const typename Collection::value_type::second_type& FindWithDefault(
33 const Collection& collection,
34 const typename Collection::value_type::first_type& key,
35 const typename Collection::value_type::second_type& value) {
36 typename Collection::const_iterator it = collection.find(key);
47 template <class Collection>
48 bool InsertIfNotPresent(Collection* const collection,
49 const typename Collection::value_type& vt) {
54 template <class Collection>
[all...]
/external/tensorflow/tensorflow/core/lib/gtl/
H A Dmap_util.h34 template <class Collection>
35 const typename Collection::value_type::second_type* FindOrNull(
36 const Collection& collection,
37 const typename Collection::value_type::first_type& key) {
38 typename Collection::const_iterator it = collection.find(key);
46 template <class Collection>
47 typename Collection::value_type::second_type* FindOrNull(
48 Collection& collection, // NOLINT
49 const typename Collection::value_type::first_type& key) {
50 typename Collection
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DIPackageCoverage.java14 import java.util.Collection;
31 public Collection<IClassCoverage> getClasses();
38 public Collection<ISourceFileCoverage> getSourceFiles();
H A DIBundleCoverage.java14 import java.util.Collection;
28 public Collection<IPackageCoverage> getPackages();
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
H A DOneWayAnova.java20 import java.util.Collection;
41 * <li>The categoryData <code>Collection</code> must contain
47 * @param categoryData <code>Collection</code> of <code>double[]</code>
54 double anovaFValue(Collection<double[]> categoryData)
62 * <li>The categoryData <code>Collection</code> must contain
68 * @param categoryData <code>Collection</code> of <code>double[]</code>
75 double anovaPValue(Collection<double[]> categoryData)
83 * <li>The categoryData <code>Collection</code> must contain
91 * @param categoryData <code>Collection</code> of <code>double[]</code>
100 boolean anovaTest(Collection<doubl
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/
H A DMyCompositeObject.java18 import java.util.Collection;
21 Collection<MyClass<? extends Object>> things;
23 public Collection<MyClass<? extends Object>> getThings() {
27 public void setThings(Collection<MyClass<? extends Object>> things) {
/external/tensorflow/tensorflow/compiler/xla/
H A Dmap_util.h33 template <class Collection>
34 const typename Collection::value_type::second_type& FindOrDie(
35 const Collection& collection,
36 const typename Collection::value_type::first_type& key) {
37 typename Collection::const_iterator it = collection.find(key);
43 template <class Collection>
44 typename Collection::value_type::second_type& FindOrDie(
45 Collection& collection, // NOLINT
46 const typename Collection::value_type::first_type& key) {
47 typename Collection
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h72 template <class Collection>
73 const typename Collection::value_type::second_type&
74 FindOrDie(const Collection& collection,
75 const typename Collection::value_type::first_type& key) {
76 typename Collection::const_iterator it = collection.find(key);
82 template <class Collection>
83 typename Collection::value_type::second_type&
84 FindOrDie(Collection& collection, // NOLINT
85 const typename Collection::value_type::first_type& key) {
86 typename Collection
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DClusterable.java20 import java.util.Collection;
39 * Returns the centroid of the given Collection of points.
41 * @param p the Collection of points to compute the centroid of
42 * @return the centroid of the given Collection of Points
44 T centroidOf(Collection<T> p);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DStore.java3 import java.util.Collection;
20 Collection<T> getMatches(Selector<T> selector)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509StoreSpi.java5 import java.util.Collection;
11 public abstract Collection engineGetMatches(Selector selector);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestCollectionGenerator.java21 import java.util.Collection;
30 extends TestContainerGenerator<Collection<E>, E> {
H A DAbstractCollectionTester.java21 import java.util.Collection;
32 extends AbstractContainerTester<Collection<E>, E> {
35 protected Collection<E> collection;
37 @Override protected Collection<E> actualContents() {
42 @Override protected Collection<E> resetContainer(Collection<E> newContents) {
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
H A DAssistedInjectBinding.java21 import java.util.Collection;
37 Collection<AssistedMethod> getAssistedMethods();
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DPeriodFormatterService.java13 import java.util.Collection;
49 Collection<String> getAvailableLocaleNames();
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
H A DPeriodFormatterDataService.java13 import java.util.Collection;
34 public abstract Collection<String> getAvailableLocales();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DPeriodFormatterService.java12 import java.util.Collection;
47 Collection<String> getAvailableLocaleNames();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DPeriodFormatterDataService.java12 import java.util.Collection;
32 public abstract Collection<String> getAvailableLocales();
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
H A DCar.java18 import java.util.Collection;
27 private Collection<Wheel> wheels;
40 public Collection<Wheel> getWheels() {
44 public void setWheels(Collection<Wheel> wheels) {
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DLeftRecursionCyclesMessage.java32 import java.util.Collection;
39 public Collection cycles;
41 public LeftRecursionCyclesMessage(Collection cycles) {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue171/
H A DClassWithGenericMap.java18 import java.util.Collection;
23 public final Map<String, Collection<Integer>> services = new HashMap<String, Collection<Integer>>();
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DPackageCoverageImpl.java14 import java.util.Collection;
27 private final Collection<IClassCoverage> classes;
29 private final Collection<ISourceFileCoverage> sourceFiles;
42 final Collection<IClassCoverage> classes,
43 final Collection<ISourceFileCoverage> sourceFiles) {
60 public Collection<IClassCoverage> getClasses() {
64 public Collection<ISourceFileCoverage> getSourceFiles() {
H A DBundleCoverageImpl.java15 import java.util.Collection;
34 private final Collection<IPackageCoverage> packages;
45 final Collection<IPackageCoverage> packages) {
63 final Collection<IClassCoverage> classes,
64 final Collection<ISourceFileCoverage> sourcefiles) {
68 private static Collection<IPackageCoverage> groupByPackage(
69 final Collection<IClassCoverage> classes,
70 final Collection<ISourceFileCoverage> sourcefiles) {
71 final Map<String, Collection<IClassCoverage>> classesByPackage = new HashMap<String, Collection<IClassCoverag
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSortedKeySortedSetMultimap.java21 import java.util.Collection;
37 AbstractSortedKeySortedSetMultimap(SortedMap<K, Collection<V>> map) {
42 public SortedMap<K, Collection<V>> asMap() {
43 return (SortedMap<K, Collection<V>>) super.asMap();
47 SortedMap<K, Collection<V>> backingMap() {
48 return (SortedMap<K, Collection<V>>) super.backingMap();

Completed in 898 milliseconds

1234567891011>>