HomeSort by relevance Sort by last modified time
    Searched refs:Collection (Results 1 - 25 of 2766) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/xml/
IPostProcessor.java 3 import java.util.Collection;
12 Collection<XmlSuite> process(Collection<XmlSuite> suites);
  /external/libtextclassifier/util/gtl/
map_util.h 31 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);
37 if (it == collection.end()) {
43 // Inserts the given key and value into the given collection if and only if th
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
map_util.h 72 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);
77 GOOGLE_CHECK(it != collection.end()) << "Map key not found: " << key;
82 template <class Collection>
83 typename Collection::value_type::second_type
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
IPackageCoverage.java 14 import java.util.Collection;
31 public Collection<IClassCoverage> getClasses();
38 public Collection<ISourceFileCoverage> getSourceFiles();
IBundleCoverage.java 14 import java.util.Collection;
17 * Coverage data of a bundle. A bundle groups a collection of packages.
28 public Collection<IPackageCoverage> getPackages();
  /libcore/jsr166-tests/src/test/java/jsr166/
CollectionImplementation.java 10 import java.util.Collection;
12 /** Allows tests to work with different Collection implementations. */
14 /** Returns the Collection class. */
16 /** Returns an empty collection. */
17 public Collection emptyCollection();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
OneWayAnova.java 20 import java.util.Collection;
37 * Computes the ANOVA F-value for a collection of <code>double[]</code>
41 * <li>The categoryData <code>Collection</code> must contain
44 * <code>categoryData</code> collection and each of these arrays must
47 * @param categoryData <code>Collection</code> of <code>double[]</code>
54 double anovaFValue(Collection<double[]> categoryData)
58 * Computes the ANOVA P-value for a collection of <code>double[]</code>
62 * <li>The categoryData <code>Collection</code> must contain
65 * <code>categoryData</code> collection and each of these arrays must
68 * @param categoryData <code>Collection</code> of <code>double[]</code
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue112/
MyCompositeObject.java 18 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) {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4879.dir/
a.go 7 type Collection struct {
17 func MakePrivateCollection() *Collection {
18 return &Collection{
23 func MakePrivateCollection2() *Collection {
24 return &Collection{
28 func MakePrivateCollection3() *Collection {
29 return &Collection{
  /prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/
a.go 7 type Collection struct {
17 func MakePrivateCollection() *Collection {
18 return &Collection{
23 func MakePrivateCollection2() *Collection {
24 return &Collection{
28 func MakePrivateCollection3() *Collection {
29 return &Collection{
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
Clusterable.java 20 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/
Store.java 3 import java.util.Collection;
13 * Return a possibly empty collection of objects that match the criteria implemented
17 * @return a collection of matching objects, empty if none available.
20 Collection<T> getMatches(Selector<T> selector)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509StoreSpi.java 5 import java.util.Collection;
11 public abstract Collection engineGetMatches(Selector selector);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestCollectionGenerator.java 21 import java.util.Collection;
30 extends TestContainerGenerator<Collection<E>, E> {
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedInjectBinding.java 21 import java.util.Collection;
37 Collection<AssistedMethod> getAssistedMethods();
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
PeriodFormatterService.java 13 import java.util.Collection;
47 * @return a collection of String (locale names)
49 Collection<String> getAvailableLocaleNames();
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
PeriodFormatterDataService.java 13 import java.util.Collection;
30 * Returns a collection of all the locale names supported by this service.
32 * @return a collection of locale names, as String
34 public abstract Collection<String> getAvailableLocales();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
PeriodFormatterService.java 12 import java.util.Collection;
45 * @return a collection of String (locale names)
47 Collection<String> getAvailableLocaleNames();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
PeriodFormatterDataService.java 12 import java.util.Collection;
28 * Returns a collection of all the locale names supported by this service.
30 * @return a collection of locale names, as String
32 public abstract Collection<String> getAvailableLocales();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionExtras.java 20 import java.util.Collection;
30 Collection<String> getExtraColumnNames();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue150/
Car.java 18 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/
LeftRecursionCyclesMessage.java 32 import java.util.Collection;
39 public Collection cycles;
41 public LeftRecursionCyclesMessage(Collection cycles) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue171/
ClassWithGenericMap.java 18 import java.util.Collection;
23 public final Map<String, Collection<Integer>> services = new HashMap<String, Collection<Integer>>();
  /libcore/ojluni/src/main/java/java/security/cert/
CertStoreSpi.java 29 import java.util.Collection;
71 * Returns a {@code Collection} of {@code Certificate}s that
73 * match the selector, an empty {@code Collection} will be returned.
76 * {@code Collection} may not contain <b>all</b> of the
91 * @return A {@code Collection} of {@code Certificate}s that
95 public abstract Collection<? extends Certificate> engineGetCertificates
99 * Returns a {@code Collection} of {@code CRL}s that
101 * match the selector, an empty {@code Collection} will be returned.
104 * {@code Collection} may not contain <b>all</b> of the
119 * @return A {@code Collection} of {@code CRL}s tha
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
IShardableTest.java 20 import java.util.Collection;
38 * @return a collection of subtests to be executed separately or <code>null</code> if test is
41 public default Collection<IRemoteTest> split() {
50 * @return a collection of subtests to be executed separately or <code>null</code> if test is
53 public default Collection<IRemoteTest> split(int shardCountHint) {

Completed in 674 milliseconds

1 2 3 4 5 6 7 8 91011>>