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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
SparseMultiSetTest.cpp 19 // Empty set tests.
21 USet Set;
22 EXPECT_TRUE(Set.empty());
23 EXPECT_EQ(0u, Set.size());
25 Set.setUniverse(10);
27 // Lookups on empty set.
28 EXPECT_TRUE(Set.find(0) == Set.end());
29 EXPECT_TRUE(Set.find(9) == Set.end())
    [all...]
SparseSetTest.cpp 19 // Empty set tests.
21 USet Set;
22 EXPECT_TRUE(Set.empty());
23 EXPECT_TRUE(Set.begin() == Set.end());
24 EXPECT_EQ(0u, Set.size());
26 Set.setUniverse(10);
28 // Lookups on empty set.
29 EXPECT_TRUE(Set.find(0) == Set.end())
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexAnnotatedElement.java 19 import java.util.Set;
32 Set<DexAnnotation> getAnnotations();
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/staticprovides/
StaticTestComponent.java 19 import java.util.Set;
26 Set<String> getMultiboundStrings();
27 Set<Integer> getMultiboundIntegers();
  /external/testng/src/main/java/org/testng/collections/
SetMultiMap.java 3 import java.util.Set;
8 public class SetMultiMap<K, V> extends MultiMap<K, V, Set<V>> {
11 protected Set<V> createValue() {
Sets.java 6 import java.util.Set;
12 public static <V> Set<V> newHashSet() {
16 public static <V> Set<V> newHashSet(Collection<V> c) {
20 public static <V> Set<V> newLinkedHashSet() {
  /libcore/ojluni/src/main/java/java/security/cert/
X509Extension.java 28 import java.util.Set;
81 * Gets a Set of the OID strings for the extension(s) marked
85 * Here is sample code to get a Set of critical extensions from an
100 * Set<String> critSet = cert.getCriticalExtensionOIDs();
102 * System.out.println("Set of critical extensions:");
108 * @return a Set (or an empty Set if none are marked critical) of
113 public Set<String> getCriticalExtensionOIDs();
116 * Gets a Set of the OID strings for the extension(s) marked
120 * Here is sample code to get a Set of non-critical extensions from a
    [all...]
  /external/guice/core/src/com/google/inject/spi/
HasDependencies.java 19 import java.util.Set;
33 * included in the returned set.
35 * @return a possibly empty set
37 Set<Dependency<?>> getDependencies();
  /libcore/ojluni/src/main/java/java/security/
AlgorithmConstraints.java 28 import java.util.Set;
58 * @param primitives a set of cryptographic primitives
69 public boolean permits(Set<CryptoPrimitive> primitives,
78 * @param primitives a set of cryptographic primitives
87 public boolean permits(Set<CryptoPrimitive> primitives, Key key);
93 * @param primitives a set of cryptographic primitives
105 public boolean permits(Set<CryptoPrimitive> primitives,
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
HasClassReferences.java 19 import java.util.Set;
22 Set<ClassName> referencedClasses();
24 static final Function<HasClassReferences, Set<ClassName>> COMBINER =
25 new Function<HasClassReferences, Set<ClassName>>() {
27 public Set<ClassName> apply(HasClassReferences input) {
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
SetProducer.java 26 import java.util.Set;
29 * A {@link Producer} implementation used to implement {@link Set} bindings. This producer returns
30 * a future {@link Set} whose elements are populated by subsequent calls to the delegate
36 public final class SetProducer<T> extends AbstractProducer<Set<T>> {
38 * Returns a new producer that creates {@link Set} futures from the union of the given
42 public static <T> Producer<Set<T>> create(Producer<Set<T>>... producers) {
46 private final Set<Producer<Set<T>>> contributingProducers;
48 private SetProducer(Set<Producer<Set<T>>> contributingProducers)
    [all...]
  /external/regex-re2/re2/
set.h 16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set {
20 Set(const RE2::Options& options, RE2::Anchor anchor);
21 ~Set();
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
32 // Compile prepares the Set for matching.
38 // Match returns true if text matches any of the regexps in the set.
48 //DISALLOW_EVIL_CONSTRUCTORS(Set);
49 Set(const Set&)
    [all...]
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/
ParentGetters.java 18 import java.util.Set;
24 Set<Object> objectSet();
RequiresMultibindingsInParent.java 18 import java.util.Set;
24 private final Set<RequiresMultiboundObjects> setOfRequiresMultiboundObjects;
30 Set<RequiresMultiboundObjects> setOfRequiresMultiboundObjects) {
44 Set<RequiresMultiboundObjects> setOfRequiresMultiboundObjects() {
RequiresMultiboundObjects.java 19 import java.util.Set;
23 private final Set<Object> setOfObjects;
27 RequiresMultiboundObjects(Set<Object> setOfObjects, Map<String, Object> mapOfObjects) {
32 Set<Object> setOfObjects() {
RequiresMultiboundStrings.java 19 import java.util.Set;
23 private final Set<String> setOfStrings;
27 RequiresMultiboundStrings(Set<String> setOfStrings, Map<String, String> mapOfStrings) {
32 Set<String> setOfStrings() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Annotatable.java 35 import java.util.Set;
42 * Gets a set of the annotations that are applied to this object.
44 * The annotations in the returned set are guaranteed to have unique types.
46 * @return A set of the annotations that are applied to this object
48 @Nonnull Set<? extends Annotation> getAnnotations();
BasicAnnotation.java 4 import java.util.Set;
20 * Gets a set of the name/value elements associated with this annotation.
22 * The elements in the returned set will be unique with respect to the element name.
24 * @return A set of AnnotationElements
26 @Nonnull Set<? extends AnnotationElement> getElements();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
HumanGen.java 19 import java.util.Set;
21 public class HumanGen extends AbstractHumanGen<Set<HumanGen>, HumanGen> {
  /frameworks/base/core/java/android/security/net/config/
ConfigSource.java 20 import java.util.Set;
24 Set<Pair<Domain, NetworkSecurityConfig>> getPerDomainConfigs();
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
MultibindingComponent.java 21 import java.util.Set;
26 ListenableFuture<Set<String>> strs();
29 ListenableFuture<Set<Produced<String>>> successfulSet();
32 ListenableFuture<Set<Produced<String>>> possiblyThrowingSet();
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
TestConfigSource.java 20 import java.util.Set;
24 private final Set<Pair<Domain, NetworkSecurityConfig>> mConfigs;
26 public TestConfigSource(Set<Pair<Domain, NetworkSecurityConfig>> configs,
32 public Set<Pair<Domain, NetworkSecurityConfig>> getPerDomainConfigs() {
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/multipackage/foo/
Foo.java 19 import java.util.Set;
23 public final Set<String> strings;
25 @Inject Foo(Set<String> strings) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
AbstractSetTester.java 22 import java.util.Set;
30 * Previously we had a field named set that was initialized to the value of
32 * value of set or collection but not both.
34 protected final Set<E> getSet() {
35 return (Set<E>) collection;
  /external/jcommander/src/main/java/com/beust/jcommander/internal/
Sets.java 23 import java.util.Set;
27 public static <K> Set<K> newHashSet() {
31 public static <K> Set<K> newLinkedHashSet() {

Completed in 309 milliseconds

1 2 3 4 5 6 7 8 91011>>