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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
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...]
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...]
  /test/suite_harness/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/libcxx/test/libcxx/containers/gnu_cxx/
hash_set.pass.cpp 22 typedef __gnu_cxx::hash_set<int> Set;
23 Set s;
24 Set s2(s);
  /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() {
  /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
94 * Set<String> critSet = cert.getCriticalExtensionOIDs();
96 * System.out.println("Set of critical extensions:");
102 * @return a Set (or an empty Set if none are marked critical) of
107 public Set<String> getCriticalExtensionOIDs();
110 * Gets a Set of the OID strings for the extension(s) marked
114 * Here is sample code to get a Set of non-critical extensions from a
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/gnu_cxx/
hash_set.pass.cpp 22 typedef __gnu_cxx::hash_set<int> Set;
23 Set s;
24 Set s2(s);
  /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();
  /external/libcxx/test/libcxx/containers/unord/unord.set/
missing_hash_specialization.fail.cpp 49 using Set = std::unordered_set<VT>;
50 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
59 using Set = std::unordered_set<int, BadHashNoCopy>;
60 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
63 using Set = std::unordered_set<int, BadHashNoCall>;
64 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
67 using Set = std::unordered_set<int, GoodHashNoDefault>;
68 Set s(/*bucketcount*/42, GoodHashNoDefault(nullptr));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/unord/unord.set/
missing_hash_specialization.fail.cpp 49 using Set = std::unordered_set<VT>;
50 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
59 using Set = std::unordered_set<int, BadHashNoCopy>;
60 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
63 using Set = std::unordered_set<int, BadHashNoCall>;
64 Set s; // expected-error@__hash_table:* {{the specified hash does not meet the Hash requirements}}
67 using Set = std::unordered_set<int, GoodHashNoDefault>;
68 Set s(/*bucketcount*/42, GoodHashNoDefault(nullptr));
  /external/libcxx/test/std/containers/associative/multiset/
incomplete_type.pass.cpp 10 // <set>
15 #include <set>
18 typedef std::multiset<A> Set;
20 Set m;
21 Set::iterator it;
22 Set::const_iterator cit;
  /external/libcxx/test/std/containers/associative/set/
incomplete_type.pass.cpp 10 // <set>
12 // Check that std::set and its iterators can be instantiated with an incomplete
15 #include <set>
18 typedef std::set<A> Set;
20 Set m;
21 Set::iterator it;
22 Set::const_iterator cit;
  /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,
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/
incomplete_type.pass.cpp 10 // <set>
15 #include <set>
18 typedef std::multiset<A> Set;
20 Set m;
21 Set::iterator it;
22 Set::const_iterator cit;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/
incomplete_type.pass.cpp 10 // <set>
12 // Check that std::set and its iterators can be instantiated with an incomplete
15 #include <set>
18 typedef std::set<A> Set;
20 Set m;
21 Set::iterator it;
22 Set::const_iterator cit;
  /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/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
TestTypecastGenericArray.java 6 import java.util.Set;
13 public Set<String> set; field in class:TestTypecastGenericArray
14 public HashSet<Set<String>> hset;
15 public Map<Set<String>,Set<Map<String,Set<String>>>> map;
27 set = (HashSet<String>) o;
28 set = (Set<String>) o
    [all...]
TestFieldGeneric.java 5 import java.util.Set;
10 Set<TestFieldGeneric> set; field in class:TestFieldGeneric
17 Set<String> otherSet;
23 Set<TestFieldGeneric<Set<TestFieldGeneric>>> nestedSet;
25 Map<Set<TestFieldGeneric>, TestFieldGeneric<T>> nestedMap;
  /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/mockito/src/test/java/org/mockitousage/basicapi/
MockAccessTest.java 10 import java.util.Set;
20 Set<?> expectedMock = mock(Set.class);
22 Set<?> returnedMock = when(expectedMock.isEmpty()).thenReturn(false).getMock();
29 Set<?> returnedMock = when(mock(Set.class).isEmpty()).thenReturn(false, true).getMock();
  /external/curl/docs/cmdline-opts/
remote-time.d 3 Help: Set the remote file's time on the local output
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/
ParentGetters.java 18 import java.util.Set;
24 Set<Object> objectSet();
  /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();

Completed in 1150 milliseconds

1 2 3 4 5 6 7 8 91011>>