HomeSort by relevance Sort by last modified time
    Searched defs:Sets (Results 1 - 25 of 29) sorted by null

1 2

  /external/mockito/src/org/mockito/internal/util/collections/
Sets.java 14 public abstract class Sets {
  /external/guava/guava-tests/test/com/google/common/collect/
SortedIterablesTest.java 55 assertTrue(SortedIterables.hasSameComparator(Ordering.natural(), Sets.newTreeSet()));
62 Sets.newTreeSet(Ordering.natural().reverse())));
MapMakerTest.java 119 Set<String> expectedKeys = Sets.newHashSetWithExpectedSize(nTasks + nSeededEntries);
169 assertEquals(expectedKeys, Sets.union(map.keySet(), removalNotifications.keySet()));
170 assertTrue(Sets.intersection(map.keySet(), removalNotifications.keySet()).isEmpty());
TreeMultimapExplicitTest.java 189 assertEquals(Sets.newHashSet(null, "tree"), keySet.headSet("yahoo"));
190 assertEquals(Sets.newHashSet("google"), keySet.tailSet("yahoo"));
191 assertEquals(Sets.newHashSet("tree"), keySet.subSet("ask", "yahoo"));
ImmutableBiMapTest.java 174 assertEquals(Sets.newHashSet(map.entrySet()), map.entrySet());
175 assertEquals(Sets.newHashSet(map.keySet()), map.keySet());
504 assertEquals(Sets.newHashSet("one", "two", "three", "four"), keys);
512 assertEquals(Sets.newHashSet(1, 2, 3, 4), values);
ImmutableMapTest.java 171 assertEquals(Sets.newHashSet(map.keySet()), map.keySet());
TreeMultimapNaturalTest.java 20 import static com.google.common.collect.Sets.newHashSet;
156 assertEquals(Sets.newHashSet(1, 3), fooSet);
158 assertEquals(Sets.newHashSet(), missingSet);
161 assertEquals(Sets.newHashSet(0, 1, 3), fooSet);
164 assertEquals(Sets.newHashSet(2), multimap.get("missing"));
170 assertEquals(Sets.newHashSet(3, 7), fooSet);
172 assertEquals(Sets.newHashSet(), missingSet);
175 assertEquals(Sets.newHashSet(3, 6, 7), fooSet);
178 assertEquals(Sets.newHashSet(9), multimap.get("missing"));
184 assertEquals(Sets.newHashSet(3), fooSet)
    [all...]
ImmutableSortedMapTest.java 184 assertEquals(Sets.newHashSet(map.entrySet()), map.entrySet());
185 assertEquals(Sets.newHashSet(map.keySet()), map.keySet());
  /external/llvm/lib/Support/
DeltaAlgorithm.cpp 45 const changesetlist_ty &Sets) {
47 UpdatedSearchState(Changes, Sets);
50 if (Sets.size() <= 1)
55 if (Search(Changes, Sets, Res))
58 // Otherwise, partition the sets if possible; if not we are done.
60 for (changesetlist_ty::const_iterator it = Sets.begin(),
61 ie = Sets.end(); it != ie; ++it)
63 if (SplitSets.size() == Sets.size())
70 const changesetlist_ty &Sets,
73 for (changesetlist_ty::const_iterator it = Sets.begin()
    [all...]
  /frameworks/base/core/java/com/google/android/collect/
Sets.java 27 * other static methods for working with Sets.
30 public class Sets {
53 * <p>{@code Set<Base> set = Sets.newHashSet(sub1, sub2);}
58 * <p>{@code Set<Base> set = Sets.<Base>newHashSet(sub1, sub2);}
  /external/llvm/utils/TableGen/
TableGen.cpp 81 clEnumValN(PrintSets, "print-sets",
82 "Print expanded sets for testing DAG exprs"),
151 SetTheory Sets;
152 Sets.addFieldExpander("Set", "Elements");
156 const std::vector<Record*> *Elts = Sets.expand(Recs[i]);
CodeGenSchedule.h 224 SetTheory Sets;
CodeGenRegisters.h 433 SetTheory Sets;
463 // unique set for each register class. Simliar sets are coalesced with
471 // register units to lists of unit sets. If the list of unit sets does not
490 // Iteratively prune unit sets.
508 SetTheory &getSets() { return Sets; }
627 // register classes if some register units appeared in a list of sets that
  /external/guava/guava/src/com/google/common/collect/
Sets.java 64 public final class Sets {
65 private Sets() {}
358 return Sets.newSetFromMap(Maps.<E, Boolean>newIdentityHashMap());
442 * Set<Object> identityHashSet = Sets.newSetFromMap(
527 * An unmodifiable view of a set which may be backed by other sets; this view
528 * will change as the backing sets do. Contains methods to copy the data into
555 * all the sets involved are based on the same notion of equivalence.
568 * Returns an unmodifiable <b>view</b> of the union of two sets. The returned
574 * <p>Results are undefined if {@code set1} and {@code set2} are sets based on
579 * smaller of the two sets. If you have reason to believe one of your set
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 250 this(Sets.newTreeSet(comparator));
Sets.java 61 public final class Sets {
62 private Sets() {}
355 return Sets.newSetFromMap(Maps.<E, Boolean>newIdentityHashMap());
439 * Set<Object> identityHashSet = Sets.newSetFromMap(
515 * An unmodifiable view of a set which may be backed by other sets; this view
516 * will change as the backing sets do. Contains methods to copy the data into
543 * all the sets involved are based on the same notion of equivalence.
556 * Returns an unmodifiable <b>view</b> of the union of two sets. The returned
562 * <p>Results are undefined if {@code set1} and {@code set2} are sets based on
567 * smaller of the two sets. If you have reason to believe one of your set
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/editor/
ContactEditorUtilsTest.java 26 import com.google.common.collect.Sets;
94 MoreAsserts.assertEquals(Sets.newHashSet(TYPE1.accountType), Sets.newHashSet(types));
100 MoreAsserts.assertEquals(Sets.newHashSet(TYPE1.accountType, TYPE2EX.accountType),
101 Sets.newHashSet(types));
108 Sets.newHashSet(TYPE1.accountType, TYPE2.accountType, TYPE2EX.accountType),
109 Sets.newHashSet(types));
130 Sets.newHashSet(mAccountTypes.mAccounts),
138 Sets.newHashSet(mAccountTypes.mAccounts),
146 Sets.newHashSet(mAccountTypes.mAccounts)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LocaleManagerTest.java 19 import com.google.common.collect.Sets;
48 assertTrue(Sets.difference(languageToCountry.keySet(),
82 assertTrue(Sets.difference(languageToCountry.keySet(),
  /libcore/benchmarks/libs/
caliper.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 470 milliseconds

1 2