Searched refs:Set (Results 1 - 25 of 1364) 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/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/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DBasicAnnotation.java4 import java.util.Set;
26 @Nonnull Set<? extends AnnotationElement> getElements();
H A DDexFile.java35 import java.util.Set;
48 @Nonnull Set<? extends ClassDef> getClasses();
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DAbstractSetTester.java22 import java.util.Set;
34 protected final Set<E> getSet() {
35 return (Set<E>) collection;
/external/jetty/src/java/org/eclipse/jetty/security/
H A DConstraintAware.java22 import java.util.Set;
30 Set<String> getRoles();
33 /** Set Constraint Mappings and roles.
38 void setConstraintMappings(List<ConstraintMapping> constraintMappings, Set<String> roles);
/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();
49 @Override Set<V> createUnmodifiableEmptyCollection() {
59 * method returns a {@link Set}, instead of the {@link Collection} specified
62 @Override public Set<V> get(@Nullable K key) {
63 return (Set<V>) super.get(key);
70 * method returns a {@link Set}, instead of the {@link Collection} specified
73 @Override public Set<Map.Entry<K, V>> entries() {
74 return (Set<Ma
[all...]
H A DFilteredKeySetMultimap.java23 import java.util.Set;
46 public Set<V> get(K key) {
47 return (Set<V>) super.get(key);
51 public Set<V> removeAll(Object key) {
52 return (Set<V>) super.removeAll(key);
56 public Set<V> replaceValues(K key, Iterable<? extends V> values) {
57 return (Set<V>) super.replaceValues(key, values);
61 public Set<Entry<K, V>> entries() {
62 return (Set<Entry<K, V>>) super.entries();
66 Set<Entr
[all...]
H A DFilteredEntrySetMultimap.java23 import java.util.Set;
44 public Set<V> get(K key) {
45 return (Set<V>) super.get(key);
49 public Set<V> removeAll(Object key) {
50 return (Set<V>) super.removeAll(key);
54 public Set<V> replaceValues(K key, Iterable<? extends V> values) {
55 return (Set<V>) super.replaceValues(key, values);
59 Set<Entry<K, V>> createEntries() {
64 public Set<Entry<K, V>> entries() {
65 return (Set<Entr
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
H A DSetFeature.java25 import java.util.Set;
28 * 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.java21 import java.util.Set;
31 private Set<Feature<?>> conflicts;
35 String message, Set<Feature<?>> conflicts, Object source) {
41 public Set<Feature<?>> getConflicts() {
/external/vogar/src/vogar/target/
H A DPackage.java22 import java.util.Set;
33 private final Set<String> subpackageNames;
34 private final Set<Class<?>> topLevelClasses;
37 Set<String> subpackageNames, Set<Class<?>> topLevelClasses) {
43 public Set<Class<?>> getTopLevelClassesRecursive() throws IOException {
44 Set<Class<?>> set = new TreeSet<Class<?>>(ClassPathScanner.ORDER_CLASS_BY_NAME);
49 private Set<Package> getSubpackages() throws IOException {
50 Set<Package> info = new HashSet<Package>();
57 private void addTopLevelClassesTo(Set<Clas
[all...]
/external/libopus/celt/arm/
H A Darmopts.s.in27 ; Set the following to 1 if we have EDSP instructions
31 ; Set the following to 1 if we have ARMv6 media instructions.
34 ; Set the following to 1 if we have NEON (some ARMv7)
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableEnumSet.java19 import java.util.Set;
28 static <E> ImmutableSet<E> asImmutable(Set<E> delegate) {
39 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 DReserializingTestSetGenerator.java19 import java.util.Set;
41 @Override public Set<E> create(Object... elements) {
42 return (Set<E>) super.create(elements);
H A DTestSetGenerator.java21 import java.util.Set;
31 Set<E> create(Object... elements);
/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) {
/external/mockito/src/org/mockito/internal/util/collections/
H A DSets.java10 import java.util.Set;
15 public static Set<Object> newMockSafeHashSet(Iterable<Object> mocks) {
19 public static Set<Object> newMockSafeHashSet(Object... mocks) {
27 public static <T> Set<T> newSet(T ... elements) {
/external/vogar/src/vogar/
H A DMode.java20 import java.util.Set;
34 Set<Task> installTasks();
41 Set<Task> installActionTasks(Action action, File jar);
47 Set<Task> cleanupTasks(Action action);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DXEquivalenceMap.java14 import java.util.Set;
24 public class XEquivalenceMap<K,V,R> implements Iterable<Set<K>> {
26 Map<K,Row.R2<V,Set<R>>> source_target_reasons = new HashMap<K,Row.R2<V,Set<R>>>();
28 Map<V,Set<K>> target_sourceSet;
29 Map<K,Set<K>> source_Set = new HashMap<K,Set<K>>(); // not really needed: could go source-target-sourceset
32 this(new HashMap<V,Set<K>>());
35 public XEquivalenceMap(Map<V,Set<K>> storage) {
51 R2<V, Set<
[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() {

Completed in 583 milliseconds

1234567891011>>