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

1234567891011>>

/external/llvm/unittests/ADT/
H A DSparseMultiSetTest.cpp21 USet Set; local
22 EXPECT_TRUE(Set.empty());
23 EXPECT_EQ(0u, Set.size());
25 Set.setUniverse(10);
28 EXPECT_TRUE(Set.find(0) == Set.end());
29 EXPECT_TRUE(Set.find(9) == Set.end());
32 const USet &CSet = Set;
42 USet Set; local
82 USet Set; local
163 USet Set; local
216 ASet Set; local
[all...]
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/chromium_org/chrome/browser/extensions/api/omnibox/
H A Domnibox_unittest.cc48 .Set("content", "content")
49 .Set("description", "description")
50 .Set("descriptionStyles", ListBuilder()
52 .Set("type", "match")
53 .Set("offset", 1)
54 .Set("length", 4))
56 .Set("type", "dim")
57 .Set("offset", 6)
58 .Set("length", 3))))).Build();
79 .Set("conten
[all...]
/external/chromium_org/chrome/common/extensions/api/extension_action/
H A Dbrowser_action_manifest_unittest.cc27 .Set("name", "No default properties")
28 .Set("version", "1.0.0")
29 .Set("manifest_version", 2)
30 .Set("browser_action", DictionaryBuilder()
31 .Set("default_title", "Title")))
46 .Set("name", "String default icon")
47 .Set("version", "1.0.0")
48 .Set("manifest_version", 2)
49 .Set("browser_action", DictionaryBuilder()
50 .Set("default_ico
[all...]
H A Dscript_badge_manifest_unittest.cc41 .Set("manifest_version", 2)
42 .Set("name", "my extension")
43 .Set("version", "1.0.0.0")
44 .Set("description",
46 .Set("icons", DictionaryBuilder()
47 .Set("16", "icon16.png")
48 .Set("32", "icon32.png")
49 .Set("19", "icon19.png")
50 .Set("48", "icon48.png"))
51 .Set("script_badg
[all...]
/external/chromium_org/third_party/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/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/chromium_org/chrome/browser/extensions/api/streams_private/
H A Dstreams_private_manifest_unittest.cc32 .Set("name", "MIME type handler test")
33 .Set("version", "1.0.0")
34 .Set("manifest_version", 2)
35 .Set("mime_types", ListBuilder()
52 .Set("name", "MIME types test")
53 .Set("version", "1.0.0")
54 .Set("manifest_version", 2)
55 .Set("mime_types", ListBuilder()
/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) {
/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() {
/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/chromium_org/base/win/
H A Dscoped_variant.h90 void Set(const wchar_t* str);
93 void Set(int8 i8);
94 void Set(uint8 ui8);
95 void Set(int16 i16);
96 void Set(uint16 ui16);
97 void Set(int32 i32);
98 void Set(uint32 ui32);
99 void Set(int64 i64);
100 void Set(uint64 ui64);
101 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/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DAlternateFormatsCountryCodeSet.java24 import java.util.Set;
28 static Set<Integer> getCountryCodeSet() {
31 Set<Integer> countryCodeSet = new HashSet<Integer>(8);
/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/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler_manifest_unittest.cc59 .Set("name", "file browser handler test")
60 .Set("version", "1.0.0")
61 .Set("manifest_version", 2)
62 .Set("file_browser_handlers", ListBuilder()
64 .Set("id", "ExtremelyCoolAction")
65 .Set("default_title", "Be Amazed")
66 .Set("default_icon", "icon.png")
67 .Set("file_filters", ListBuilder()
95 .Set("name", "file browser handler test")
96 .Set("versio
[all...]
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_quota_unittest.cc85 EXPECT_TRUE(storage_->Set(DEFAULTS, "a", *byte_value_1_)->HasError());
95 storage_->Set(DEFAULTS, "Really long key", *byte_value_1_)->HasError());
103 EXPECT_FALSE(storage_->Set(DEFAULTS, "a", *byte_value_1_)->HasError());
104 settings.Set("a", byte_value_1_->DeepCopy());
107 EXPECT_TRUE(storage_->Set(DEFAULTS, "b", *byte_value_16_)->HasError());
108 EXPECT_TRUE(storage_->Set(DEFAULTS, "c", *byte_value_256_)->HasError());
117 to_set.Set("a", byte_value_1_->DeepCopy());
118 to_set.Set("b", byte_value_16_->DeepCopy());
119 EXPECT_FALSE(storage_->Set(DEFAULTS, to_set)->HasError());
120 settings.Set("
[all...]
/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...]
/external/mockito/src/org/mockito/internal/configuration/
H A DDefaultInjectionEngine.java10 import java.util.Set;
19 public void injectMocksOnFields(Set<Field> needingInjection, Set<Object> mocks, Object testClassInstance) {

Completed in 1808 milliseconds

1234567891011>>