HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableList (Results 101 - 122 of 122) sorted by null

1 2 3 45

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 34 import com.google.common.collect.ImmutableList;
568 List<ListenableFuture<String>> futures = ImmutableList.of();
614 ListenableFuture<List<String>> compound = Futures.allAsList(ImmutableList.of(future));
628 ListenableFuture<List<String>> compound = Futures.allAsList(ImmutableList.of(future1, future2));
841 final ImmutableList<TestFuture> allFutures =
842 ImmutableList.of(new TestFuture(doneSuccess, "doneSuccess", doNothing),
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SetsTest.java 208 unfiltered.addAll(ImmutableList.copyOf(elements));
229 unfiltered.addAll(ImmutableList.copyOf(elements));
823 ImmutableList<Integer> allElements = ImmutableList.of(4233352, 3284593,
    [all...]
ConcurrentHashMultisetTest.java 436 multiset.addAll(ImmutableList.of("a", "a", "b", "c", "d", "b"));
443 multiset.addAll(ImmutableList.of("a", "a", "b", "c", "d", "b"));
ImmutableMultisetTest.java 454 ImmutableList<String> list = multiset.asList();
455 assertEquals(ImmutableList.of("a", "a", "b", "b", "b"), list);
MapMakerInternalMapTest.java     [all...]
RangeTest.java 286 Helpers.testCompareToAndEquals(ImmutableList.of(a, b, c, d, e, f));
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 212 NonLoc makeCompoundVal(QualType type, llvm::ImmutableList<SVal> vals) {
SVals.h 21 #include "llvm/ADT/ImmutableList.h"
420 typedef llvm::ImmutableList<SVal>::iterator iterator;
  /external/guava/guava/src/com/google/common/collect/
Lists.java 68 * ImmutableList#of()} instead.
82 * non-null, use an overload of {@link ImmutableList#of()} (for varargs) or
83 * {@link ImmutableList#copyOf(Object[])} (for an array) instead.
110 * non-null, use {@link ImmutableList#copyOf(Iterator)} instead.
129 * non-null, use {@link ImmutableList#copyOf(Iterator)} instead.
151 * ImmutableList} instead of a growable {@link ArrayList}.
198 * {@link ImmutableList#of()} instead.
535 @Beta public static ImmutableList<Character> charactersOf(String string) {
539 @SuppressWarnings("serial") // serialized using ImmutableList serialization
541 extends ImmutableList<Character>
    [all...]
ImmutableSet.java 60 * @see ImmutableList
442 @Override ImmutableList<E> createAsList() {
Iterables.java 470 return concat(ImmutableList.copyOf(inputs));
    [all...]
Iterators.java 513 return concat(ImmutableList.copyOf(inputs).iterator());
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SplitterTest.java 23 import com.google.common.collect.ImmutableList;
620 return ImmutableList.copyOf(collection);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 452 return concat(ImmutableList.copyOf(inputs));
    [all...]
Iterators.java 495 return concat(ImmutableList.copyOf(inputs).iterator());
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java 48 import com.google.common.collect.ImmutableList;
    [all...]
CacheLoadingTest.java 31 import com.google.common.collect.ImmutableList;
331 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of()));
377 assertEquals(ImmutableMap.of(), cache.getAll(ImmutableList.<Integer>of()));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 598 llvm::ImmutableList<SVal> vals = getBasicVals().getEmptySValList();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 4890 milliseconds

1 2 3 45