Searched refs:Set (Results 1 - 25 of 980) sorted by relevance

1234567891011>>

/external/llvm/unittests/ADT/
H A DSparseSetTest.cpp21 USet Set; local
22 EXPECT_TRUE(Set.empty());
23 EXPECT_TRUE(Set.begin() == Set.end());
24 EXPECT_EQ(0u, Set.size());
26 Set.setUniverse(10);
29 EXPECT_TRUE(Set.find(0) == Set.end());
30 EXPECT_TRUE(Set.find(9) == Set
44 USet Set; local
81 USet Set; local
169 ASet Set; local
[all...]
/external/regex-re2/re2/
H A Dset.h16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set { class in class:re2::RE2
20 Set(const RE2::Options& options, RE2::Anchor anchor);
21 ~Set();
32 // Compile prepares the Set for matching.
48 //DISALLOW_EVIL_CONSTRUCTORS(Set);
49 Set(const Set&);
50 void operator=(const Set&);
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableEnumSet.java19 import java.util.Set;
28 public ImmutableEnumSet(Set<E> delegate) {
H A DRegularImmutableSet.java21 import java.util.Set;
29 RegularImmutableSet(Set<E> delegate) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestSetGenerator.java19 import java.util.Set;
30 Set<E> create(Object... elements);
H A DIteratorFeature.java23 import java.util.Set;
53 public static final Set<IteratorFeature> UNMODIFIABLE =
60 public static final Set<IteratorFeature> MODIFIABLE =
H A DReserializingTestSetGenerator.java19 import java.util.Set;
41 @Override public Set<E> create(Object... elements) {
42 return (Set<E>) super.create(elements);
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DFeature.java19 import java.util.Set;
31 Set<Feature<? super T>> getImpliedFeatures();
H A DSetFeature.java24 import java.util.Set;
27 * Optional features of classes derived from {@code Set}.
35 public enum SetFeature implements Feature<Set> {
40 private final Set<Feature<? super Set>> implied;
42 SetFeature(Feature<? super Set> ... implied) {
47 public Set<Feature<? super Set>> getImpliedFeatures() {
H A DConflictingRequirementsException.java19 import java.util.Set;
30 private Set<Feature<?>> conflicts;
34 String message, Set<Feature<?>> conflicts, Object source) {
40 public Set<Feature<?>> getConflicts() {
H A DTesterRequirements.java22 import java.util.Set;
33 private final Set<Feature<?>> presentFeatures;
34 private final Set<Feature<?>> absentFeatures;
37 Set<Feature<?>> presentFeatures, Set<Feature<?>> absentFeatures) {
51 public final Set<Feature<?>> getPresentFeatures() {
55 public final Set<Feature<?>> getAbsentFeatures() {
/external/chromium/base/win/
H A Dscoped_variant.h91 void Set(const wchar_t* str);
94 void Set(int8 i8);
95 void Set(uint8 ui8);
96 void Set(int16 i16);
97 void Set(uint16 ui16);
98 void Set(int32 i32);
99 void Set(uint32 ui32);
100 void Set(int64 i64);
101 void Set(uint64 ui64);
102 void Set(floa
[all...]
/external/guava/guava/src/com/google/common/net/
H A DTldPatterns.java8 import java.util.Set;
24 static final Set<String> EXACT = ImmutableSet.of(
4098 static final Set<String> UNDER = ImmutableSet.of(
4197 static final Set<String> EXCLUDED = ImmutableSet.of(
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DAbstractSetTester.java21 import java.util.Set;
34 protected final Set<E> getSet() {
35 return (Set<E>) collection;
/external/proguard/src/proguard/classfile/visitor/
H A DClassCollector.java26 import java.util.Set;
38 private final Set set;
43 * @param set the <code>Set</code> in which all class names will be
46 public ClassCollector(Set set)
H A DMemberCollector.java26 import java.util.Set;
38 private final Set set;
43 * @param set the <code>Set</code> in which all method names/descriptor
46 public MemberCollector(Set set)
/external/guava/guava/src/com/google/common/collect/
H A DAbstractSetMultimap.java23 import java.util.Set;
30 * {@code Sets}. The {@link #createCollection} method must return a {@code Set}.
47 @Override abstract Set<V> createCollection();
55 * method returns a {@link Set}, instead of the {@link Collection} specified
58 @Override public Set<V> get(@Nullable K key) {
59 return (Set<V>) super.get(key);
66 * method returns a {@link Set}, instead of the {@link Collection} specified
69 @Override public Set<Map.Entry<K, V>> entries() {
70 return (Set<Map.Entry<K, V>>) super.entries();
77 * method returns a {@link Set}, instea
[all...]
H A DForwardingSetMultimap.java22 import java.util.Set;
41 @Override public Set<Entry<K, V>> entries() {
45 @Override public Set<V> get(@Nullable K key) {
49 @Override public Set<V> removeAll(@Nullable Object key) {
53 @Override public Set<V> replaceValues(K key, Iterable<? extends V> values) {
H A DSetMultimap.java23 import java.util.Set;
32 * each return a {@link Set} of values, while {@link #entries} returns a {@code
33 * Set} of map entries. Though the method signature doesn't say so explicitly,
34 * the map returned by {@link #asMap} has {@code Set} values.
45 * method returns a {@link Set}, instead of the {@link java.util.Collection}
49 Set<V> get(@Nullable K key);
55 * method returns a {@link Set}, instead of the {@link java.util.Collection}
59 Set<V> removeAll(@Nullable Object key);
65 * method returns a {@link Set}, instead of the {@link java.util.Collection}
71 Set<
[all...]
/external/chromium/webkit/glue/
H A Dcpp_binding_example.cc15 value->Set(value_);
20 value_.Set(value);
52 my_value.Set(10);
53 my_other_value.Set("Reinitialized!");
62 result->Set(args[0]);
76 result->Set(true);
78 result->Set(7);
80 result->Set(3.14159);
82 result->Set("Success!");
101 // (However, it should only be set using one of the Set() function
[all...]
H A Dcpp_variant.h32 void Set(bool value);
33 void Set(int32_t value);
34 void Set(double value);
39 // this is handled by the other Set() methods and by the destructor.
40 void Set(const char* value); // Must be a null-terminated string.
41 void Set(const std::string& value);
42 void Set(const NPString& new_value);
43 void Set(const NPVariant& new_value);
47 // is no longer needed. The other Set() methods handle this internally.
50 void Set(NPObjec
[all...]
/external/apache-harmony/support/src/test/java/tests/resources/subfolder/tests/resources/
H A Dhyts_resource_fr_FR.java20 import java.util.Set;
24 public Set<String> handleKeySet() {
/external/jmonkeyengine/engine/src/networking/com/jme3/network/
H A DHostedConnection.java35 import java.util.Set;
89 public Set<String> attributeNames();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_SetTest.java20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99
30 public Support_SetTest(String p1, Set<Integer> s) {
38 assertTrue("Set Test - Adding a duplicate element changed the set",
40 assertTrue("Set Test - Removing an element did not change the set", set
43 "Set Test - Adding and removing a duplicate element failed to remove it",
/external/chromium/testing/gtest/samples/
H A Dsample2.h60 Set(a_c_string);
65 Set(string.c_string_);
82 void Set(const char* c_string);

Completed in 375 milliseconds

1234567891011>>