HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableSet (Results 101 - 125 of 170) sorted by null

1 2 3 45 6 7

  /external/clang/lib/Analysis/
LiveVariables.cpp 86 llvm::ImmutableSet<const Stmt *>::Factory SSetFact;
87 llvm::ImmutableSet<const VarDecl *>::Factory DSetFact;
248 static void AddLiveStmt(llvm::ImmutableSet<const Stmt *> &Set,
249 llvm::ImmutableSet<const Stmt *>::Factory &F,
594 for (llvm::ImmutableSet<const VarDecl *>::iterator si =
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultimapNaturalTest.java 272 assertEquals(ImmutableSet.of("foo", "google"), keySet.headSet("hi"));
273 assertEquals(ImmutableSet.of("tree"), keySet.tailSet("hi"));
274 assertEquals(ImmutableSet.of("google"), keySet.subSet("gap", "hi"));
522 Set<Integer> fooValues = ImmutableSet.of(1, 3, 7);
523 Set<Integer> googleValues = ImmutableSet.of(2, 6);
524 Set<Integer> treeValues = ImmutableSet.of(4, 0);
544 assertEquals(ImmutableSet.of("a", "b", "c"), multimap.keySet());
ImmutableSortedSetTest.java 24 import com.google.common.collect.ImmutableSet.Builder;
755 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u");
763 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u");
771 ImmutableSet<String> set
780 ImmutableSet<String> set
789 ImmutableSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add(
    [all...]
ArrayTableTest.java 225 assertEquals(copy.rowKeySet(), ImmutableSet.of("foo", "bar"));
226 assertEquals(copy.columnKeySet(), ImmutableSet.of(1, 3));
LinkedHashMultimapTest.java 171 assertEquals(ImmutableSet.of(1, 3), multimap.get("foo"));
189 assertEquals(ImmutableSet.of(1, 3), multimap.get("foo"));
RangeTest.java 567 assertEquals(ImmutableSet.of(), Ranges.closedOpen(1, 1).asSet(integers()));
568 assertEquals(ImmutableSet.of(), Ranges.openClosed(5, 5).asSet(integers()));
569 assertEquals(ImmutableSet.of(), Ranges.lessThan(Integer.MIN_VALUE).asSet(integers()));
570 assertEquals(ImmutableSet.of(), Ranges.greaterThan(Integer.MAX_VALUE).asSet(integers()));
IterablesTest.java 640 Collection<String> set = ImmutableSet.of("a", "b", "c", "d", "e");
652 Collection<String> set = ImmutableSet.of("a", "b");
662 Collection<String> set = ImmutableSet.of("a", "b");
782 testGetOnAbc(ImmutableSet.of("a", "b", "c"));
804 Set<String> set = ImmutableSet.of("a", "b", "c");
937 Set<String> set = ImmutableSet.of("a", "b", "c");
    [all...]
ConcurrentHashMultisetTest.java 290 assertEquals(ImmutableSet.copyOf(elements), ImmutableSet.copyOf(multiset.entryIterator()));
  /external/guava/guava-tests/test/com/google/common/base/
JoinerTest.java 24 import com.google.common.collect.ImmutableSet;
371 private static final ImmutableSet<Integer> INTEGERS = ImmutableSet.of(1, 2, 3, 4);
PredicatesTest.java 23 import com.google.common.collect.ImmutableSet;
707 Collection<Integer> nums = ImmutableSet.of(1, 5);
708 Collection<Integer> sameOrder = ImmutableSet.of(1, 5);
709 Collection<Integer> differentOrder = ImmutableSet.of(5, 1);
710 Collection<Integer> differentNums = ImmutableSet.of(1, 3, 5);
757 Collection<Number> nums = ImmutableSet.of();
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
MailPrefs.java 30 import com.google.common.collect.ImmutableSet;
119 public static final ImmutableSet<String> BACKUP_KEYS =
120 new ImmutableSet.Builder<String>()
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CheckerContext.h 41 /// the ProgramState. This is implementing using llvm::ImmutableSet.
53 REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableSet<Elem>)
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableBiMap.java 114 @Override public ImmutableSet<V> values() {
ImmutableSortedSet.java 39 extends ImmutableSet<E> implements SortedSet<E>, SortedIterable<E> {
42 // which overrides ImmutableSet & which ImmutableSortedSet extends.
44 // would be inherited from the emulated ImmutableSet.
382 public static final class Builder<E> extends ImmutableSet.Builder<E> {
  /external/guava/guava/src/com/google/common/collect/
ImmutableMap.java 358 public abstract ImmutableSet<Entry<K, V>> entrySet();
365 public abstract ImmutableSet<K> keySet();
ArrayTable.java 605 public ImmutableSet<C> columnKeySet() {
751 public ImmutableSet<R> rowKeySet() {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/
ReflectionClassDef.java 36 import com.google.common.collect.ImmutableSet;
105 return ImmutableSet.of();
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CommonSuperclassTest.java 34 import com.google.common.collect.ImmutableSet;
56 classPath = new ClassPath(new ImmutableDexFile(ImmutableSet.of(
  /external/guava/guava-tests/test/com/google/common/io/
ByteStreamsTest.java 24 import com.google.common.collect.ImmutableSet;
119 private static final ImmutableSet<InputSupplier<InputStream>> BROKEN_INPUTS =
120 ImmutableSet.of(BROKEN_CLOSE_INPUT, BROKEN_GET_INPUT, BROKEN_READ);
121 private static final ImmutableSet<OutputSupplier<OutputStream>> BROKEN_OUTPUTS
122 = ImmutableSet.of(BROKEN_CLOSE_OUTPUT, BROKEN_GET_OUTPUT, BROKEN_WRITE);
  /external/guava/guava-tests/test/com/google/common/cache/
CacheTesting.java 32 import com.google.common.collect.ImmutableSet;
480 .addEqualityGroup(ImmutableSet.of(), collection)
481 .addEqualityGroup(ImmutableSet.of(""))
LocalLoadingCacheTest.java 27 import com.google.common.collect.ImmutableSet;
256 Set<Object> expectedValues = ImmutableSet.of(one);
257 Set<Object> actualValues = ImmutableSet.copyOf(map.values());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sets.py 25 ImmutableSet -- Immutable sets, subclass of BaseSet; hashable.
26 An iterable argument is mandatory to create an ImmutableSet.
34 actually added is an ImmutableSet built from it (it compares equal to
38 ImmutableSet, x is wrapped into a _TemporarilyImmutableSet z, and
49 # Set/ImmutableSet approach, and make the data an attribute.
59 __all__ = ['BaseSet', 'Set', 'ImmutableSet']
77 "Use Set or ImmutableSet.")
335 # only an ImmutableSet is hashable.
378 class ImmutableSet(BaseSet):
541 return ImmutableSet(self
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sets.py 25 ImmutableSet -- Immutable sets, subclass of BaseSet; hashable.
26 An iterable argument is mandatory to create an ImmutableSet.
34 actually added is an ImmutableSet built from it (it compares equal to
38 ImmutableSet, x is wrapped into a _TemporarilyImmutableSet z, and
49 # Set/ImmutableSet approach, and make the data an attribute.
59 __all__ = ['BaseSet', 'Set', 'ImmutableSet']
77 "Use Set or ImmutableSet.")
335 # only an ImmutableSet is hashable.
378 class ImmutableSet(BaseSet):
541 return ImmutableSet(self
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 

Completed in 506 milliseconds

1 2 3 45 6 7