/external/clang/lib/StaticAnalyzer/Core/ |
BasicValueFactory.cpp | 24 llvm::ImmutableList<SVal> L) { 109 llvm::ImmutableList<SVal> Vals) {
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Futures.java | 33 import com.google.common.collect.ImmutableList; [all...] |
/external/guava/guava-tests/test/com/google/common/cache/ |
CacheManualTest.java | 19 import com.google.common.collect.ImmutableList; 113 assertEquals(ImmutableMap.of(), cache.getAllPresent(ImmutableList.<Integer>of()));
|
CacheTesting.java | 30 import com.google.common.collect.ImmutableList; 485 .addEqualityGroup(ImmutableList.of(), collection) 486 .addEqualityGroup(ImmutableList.of(""))
|
/external/guava/guava-tests/test/com/google/common/collect/ |
MinMaxPriorityQueueTest.java | 117 ImmutableList.of(4, 8, 15, 16, 23, 42); 569 .create(ImmutableList.of(3, 5, 1, 4, 7)); 570 List<Integer> expected = ImmutableList.of(1, 3, 4, 5, 7); 582 List<Integer> expected = ImmutableList.copyOf(elements); 597 List<Integer> expected = ImmutableList.copyOf(elements); 612 List<Integer> expected = ImmutableList.copyOf(elements); 629 List<Integer> expected = ImmutableList.copyOf(elements); 644 List<Integer> expected = ImmutableList.copyOf(elements);
|
LinkedListMultimapTest.java | 106 assertEquals(ImmutableList.of(1, 3), multimap.get("foo")); 332 List<Entry<String, Integer>> addItems = ImmutableList.of( 345 ImmutableList.of(SUPPORTS_REMOVE), list, startIndex) { 385 List<Integer> addItems = ImmutableList.of(99, 88, 77); 389 ImmutableList.of(SUPPORTS_REMOVE, SUPPORTS_SET),
|
MapConstraintsTest.java | 233 ASSERT.that(ImmutableList.copyOf(multimap.entries())) 234 .is(ImmutableList.copyOf(constrained.entries())); 410 ASSERT.that(ImmutableList.copyOf(multimap.entries())) 411 .is(ImmutableList.copyOf(constrained.entries())); 593 assertEquals(ImmutableList.of(1), constrained.get("foo")); 603 assertEquals(ImmutableList.of(1), constrained.get("foo")); 613 assertEquals(ImmutableList.of(1), constrained.get("foo"));
|
IterablesTest.java | 468 assertEquals(ImmutableList.of(3, 4), first); 584 List<String> stuff = ImmutableList.copyOf(testStrs); 616 List<String> expected = ImmutableList.of("foo", "bar"); 967 ImmutableList<String> immutableList = ImmutableList.of("a", "b", "c"); 968 assertSame(immutableList, Iterables.unmodifiableIterable(immutableList)); 969 assertSame(immutableList, 970 Iterables.unmodifiableIterable((List<String>) immutableList)); [all...] |
IteratorsTest.java | 800 a = ImmutableList.of(4, 8, 15, 16, 23, 42); 848 assertEquals(ImmutableList.of(1), partitions.next()); 857 assertEquals(ImmutableList.of(1), partitions.next()); 865 ImmutableList.of( 889 assertEquals(ImmutableList.of(3), first); 921 assertEquals(ImmutableList.of(1), partitions.next()); 938 ImmutableList.of( 962 assertEquals(ImmutableList.of(3), first); [all...] |
AbstractListMultimapTest.java | 94 assertEquals(ImmutableList.of(1, 3), multimap.get("foo")); 129 assertEquals(ImmutableList.of(1, 3), entry.getValue()); 408 List<Integer> addItems = ImmutableList.of(99, 88, 77);
|
ImmutableSortedMultisetTest.java | 446 ImmutableList<String> list = multiset.asList(); 447 assertEquals(ImmutableList.of("a", "a", "b", "b", "b"), list); 449 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list);
|
ArrayTableTest.java | 166 table = ArrayTable.create(ImmutableList.of("foo"), ImmutableList.of(1));
|
Collections2Test.java | 156 unfiltered.addAll(ImmutableList.copyOf(elements)); 178 unfiltered.addAll(ImmutableList.copyOf(elements));
|
FauxveridesTest.java | 267 return (bounds.equals(ImmutableList.of(Object.class)))
|
ForwardingListTest.java | 157 ImmutableList.copyOf(elements)); 159 }).named("ForwardingList[ImmutableList] with standard implementations")
|
ListsTest.java | 228 ImmutableList.Builder<String> builder = ImmutableList.builder(); 233 }).named("Lists.reverse[ImmutableList]").withFeatures(CollectionSize.ANY, 252 return ImmutableList.copyOf(insertionOrder); 279 return ImmutableList.copyOf(insertionOrder);
|
RegularImmutableTableTest.java | 51 return ImmutableList.<ImmutableTable<Character, Integer, String>>of(SPARSE,
|
TableCollectionTest.java | 124 ImmutableList.copyOf(elements), ImmutableList.of(1, 2)); 249 ImmutableList.of(1, 2), ImmutableList.copyOf(elements)); 327 = ArrayTable.create(rowKeys, ImmutableList.of('a')); 435 = ArrayTable.create(ImmutableList.of("bar"), columnKeys); 554 Iterable<Integer> columnKeys = ImmutableList.of(1, 2, 3); [all...] |
/external/guava/guava-tests/test/com/google/common/testing/ |
EqualsTesterTest.java | 21 import com.google.common.collect.ImmutableList; 418 peerNames.addAll(ImmutableList.copyOf(names));
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
MoreExecutorsTest.java | 26 import com.google.common.collect.ImmutableList; 210 ImmutableList.of(Callables.returning("x"));
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
CheckerContext.h | 56 /// the ProgramState. This is implementing using llvm::ImmutableList. 67 REGISTER_TRAIT_WITH_PROGRAMSTATE(Name, llvm::ImmutableList<Elem>)
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
SortedMultisetTestSuiteBuilder.java | 21 import com.google.common.collect.ImmutableList; 241 return ImmutableList.copyOf(super.order(insertionOrder)).reverse();
|
/external/guava/guava-tests/test/com/google/common/io/ |
CharStreamsTest.java | 24 import com.google.common.collect.ImmutableList; 99 assertEquals(ImmutableList.of("a", "b", "c"), lines);
|
/external/guava/guava/src/com/google/common/collect/ |
RegularImmutableTable.java | 62 @Nullable private transient volatile ImmutableList<V> valueList; 65 ImmutableList<V> result = valueList; 67 valueList = result = ImmutableList.copyOf(
|
Ordering.java | 532 public <E extends T> ImmutableList<E> immutableSortedCopy( 534 return ImmutableList.copyOf(sortedCopy(iterable));
|