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

1 2 3 4 5 6 7 8 910

  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ProtobufArrayListTest.java 59 assertSame(ProtobufArrayList.emptyList(), ProtobufArrayList.emptyList());
63 assertImmutable(ProtobufArrayList.<Integer>emptyList());
162 list.addAll(Collections.<Integer>emptyList());
204 list.addAll(0, Collections.<Integer>emptyList());
232 list.removeAll(Collections.emptyList());
253 list.retainAll(Collections.emptyList());
DoubleArrayListTest.java 60 assertSame(DoubleArrayList.emptyList(), DoubleArrayList.emptyList());
64 assertImmutable(DoubleArrayList.emptyList());
144 assertEquals(0, DoubleArrayList.emptyList().size());
266 assertFalse(list.addAll(Collections.<Double>emptyList()));
267 assertFalse(list.addAll(DoubleArrayList.emptyList()));
318 list.addAll(Collections.<Double>emptyList());
360 list.addAll(0, Collections.<Double>emptyList());
395 list.removeAll(Collections.<Double>emptyList());
416 list.retainAll(Collections.<Double>emptyList());
    [all...]
FloatArrayListTest.java 60 assertSame(FloatArrayList.emptyList(), FloatArrayList.emptyList());
64 assertImmutable(FloatArrayList.emptyList());
144 assertEquals(0, FloatArrayList.emptyList().size());
266 assertFalse(list.addAll(Collections.<Float>emptyList()));
267 assertFalse(list.addAll(FloatArrayList.emptyList()));
318 list.addAll(Collections.<Float>emptyList());
360 list.addAll(0, Collections.<Float>emptyList());
395 list.removeAll(Collections.<Float>emptyList());
416 list.retainAll(Collections.<Float>emptyList());
    [all...]
IntArrayListTest.java 60 assertSame(IntArrayList.emptyList(), IntArrayList.emptyList());
64 assertImmutable(IntArrayList.emptyList());
144 assertEquals(0, IntArrayList.emptyList().size());
266 assertFalse(list.addAll(Collections.<Integer>emptyList()));
267 assertFalse(list.addAll(IntArrayList.emptyList()));
318 list.addAll(Collections.<Integer>emptyList());
360 list.addAll(0, Collections.<Integer>emptyList());
395 list.removeAll(Collections.<Integer>emptyList());
416 list.retainAll(Collections.<Integer>emptyList());
    [all...]
LongArrayListTest.java 60 assertSame(LongArrayList.emptyList(), LongArrayList.emptyList());
64 assertImmutable(LongArrayList.emptyList());
144 assertEquals(0, LongArrayList.emptyList().size());
266 assertFalse(list.addAll(Collections.<Long>emptyList()));
267 assertFalse(list.addAll(LongArrayList.emptyList()));
318 list.addAll(Collections.<Long>emptyList());
360 list.addAll(0, Collections.<Long>emptyList());
395 list.removeAll(Collections.<Long>emptyList());
416 list.retainAll(Collections.<Long>emptyList());
    [all...]
BooleanArrayListTest.java 60 assertSame(BooleanArrayList.emptyList(), BooleanArrayList.emptyList());
64 assertImmutable(BooleanArrayList.emptyList());
144 assertEquals(0, BooleanArrayList.emptyList().size());
266 assertFalse(list.addAll(Collections.<Boolean>emptyList()));
267 assertFalse(list.addAll(BooleanArrayList.emptyList()));
314 list.addAll(Collections.<Boolean>emptyList());
356 list.addAll(0, Collections.<Boolean>emptyList());
391 list.removeAll(Collections.<Boolean>emptyList());
412 list.retainAll(Collections.<Boolean>emptyList());
    [all...]
  /external/testng/src/test/java/org/testng/internal/
UtilsTest.java 8 import static java.util.Collections.emptyList;
31 List<String> emptyList = emptyList();
32 assertEquals("", join(emptyList, ","));
43 List<String> emptyList = emptyList();
44 assertEquals("", Utils.join(emptyList, ","));
  /frameworks/base/core/java/android/content/pm/
StringParceledListSlice.java 42 public static StringParceledListSlice emptyList() {
43 return new StringParceledListSlice(Collections.<String> emptyList());
ParceledListSlice.java 42 public static <T extends Parcelable> ParceledListSlice<T> emptyList() {
43 return new ParceledListSlice<T>(Collections.<T> emptyList());
  /frameworks/support/paging/common/src/main/java/androidx/paging/
TiledDataSource.java 55 callback.onResult(Collections.<T>emptyList(), 0, 0);
  /frameworks/support/room/runtime/src/test/java/androidx/room/util/
StringUtilTest.java 36 assertThat(StringUtil.splitToIntList(""), is(Collections.<Integer>emptyList()));
37 assertThat(StringUtil.joinIntoString(Collections.<Integer>emptyList()), is(""));
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/util/
UniqueModuleCountUtilTest.java 39 List<IModuleDef> emptyList = new ArrayList<>();
40 assertEquals(0, UniqueModuleCountUtil.countUniqueModules(emptyList));
  /external/turbine/javatests/com/google/turbine/binder/
BinderErrorTest.java 355 Binder.bind(ImmutableList.of(parseLines(source)), Collections.emptyList(), BOOTCLASSPATH)
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestSelection.java 130 List emptyList = new ArrayList();
137 sel = new CharsetSelector(emptyList, nonEmptySet, CharsetICU.ROUNDTRIP_SET);
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 41 assertEquals(Collections.emptyList(), rule.getLimits());
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
ProtobufArrayList.java 49 public static <E> ProtobufArrayList<E> emptyList() {
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/constraints/
WorkConstraintsTrackerTest.java 77 List<WorkSpec> emptyList = Collections.emptyList();
78 mWorkConstraintsTracker.replace(emptyList);
79 verify(mMockController).replace(emptyList);
  /libcore/luni/src/test/java/libcore/java/time/zone/
ZoneRulesTest.java 42 assertEquals(Collections.emptyList(), zoneRules.getTransitionRules());
43 assertEquals(Collections.emptyList(), zoneRules.getTransitions());
  /packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/common/
StringConcatenatorTest.java 22 import static java.util.Collections.emptyList;
63 assertCorrect(emptyList(), "");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinderTest.java 66 finder.setIncluded("bar", Collections.<String>emptyList(), false);
68 finder.setIncluded("baz", Collections.<String>emptyList(), false);
69 assertEquals(Collections.emptyList(), finder.getIncludedBy("foo"));
  /cts/tests/tests/telephony/src/android/telephony/embms/cts/
MbmsStreamingSessionTest.java 67 mStreamingSession.requestUpdateStreamingServices(Collections.emptyList());
81 mStreamingSession.requestUpdateStreamingServices(Collections.emptyList());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapPutIterableTester.java 165 assertFalse(multimap().putAll(sampleKeys().e3, Collections.<V>emptyList()));
185 multimap().putAll(sampleKeys().e0, Collections.<V>emptyList());
  /external/guava/guava-tests/test/com/google/common/base/
FinalizableReferenceQueueTest.java 156 assertEquals(Collections.emptyList(), Arrays.asList(Finalizer.class.getDeclaredClasses()));
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/data/
SessionInfoStoreTest.java 40 assertEquals(Collections.emptyList(), store.getInfos());
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
ClassCoverageImplTest.java 44 assertEquals(Collections.emptyList(), node.getMethods());

Completed in 527 milliseconds

1 2 3 4 5 6 7 8 910