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

1 2 3 4 5 6

  /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, ","));
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestSelection.java 126 List emptyList = new ArrayList();
133 sel = new CharsetSelector(emptyList, nonEmptySet, CharsetICU.ROUNDTRIP_SET);
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
ClassCoverageImplTest.java 42 assertEquals(Collections.emptyList(), data.getMethods());
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
RuleTest.java 41 assertEquals(Collections.emptyList(), rule.getLimits());
BundleCheckerTest.java 98 assertEquals(Collections.emptyList(), messages);
110 assertEquals(Collections.emptyList(), messages);
118 assertEquals(Collections.emptyList(), messages);
  /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"));
  /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/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMarker.java 92 List<Marker> emptyList = Collections.emptyList();
93 return emptyList.iterator();
  /frameworks/base/core/java/android/content/pm/
ParceledListSlice.java 54 public static <T extends Parcelable> ParceledListSlice<T> emptyList() {
55 return new ParceledListSlice<T>(Collections.<T> emptyList());
  /frameworks/base/core/tests/coretests/src/android/database/
MatrixCursorTest.java 99 cursor.addRow(Collections.emptyList());
  /cts/tests/tests/media/src/android/media/cts/
StubMediaBrowserService.java 114 mPendingLoadChildrenResult.sendResult(Collections.<MediaItem>emptyList());
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
Collections2Test.java 170 Collections2.permutations(Collections.<Integer>emptyList());
173 assertTrue(permutationSet.contains(Collections.<Integer> emptyList()));
176 assertNextPermutation(Collections.<Integer> emptyList(), permutations);
271 Collections2.permutations(Collections.<Integer>emptyList()));
LinkedListMultimapTest.java 188 assertEquals(Collections.emptyList(), foos);
PeekingIteratorTest.java 22 import static java.util.Collections.emptyList;
90 actsLikeIteratorHelper(Collections.emptyList());
100 List<?> list = Collections.emptyList();
216 List<Integer> list = emptyList();
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
BytesTest.java 252 assertSame(Collections.emptyList(), Bytes.asList(EMPTY));
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
IteratorTesterTest.java 21 import static java.util.Collections.emptyList;
229 List<Integer> emptyList = newArrayList();
232 new IteratorTester<Integer>(1, MODIFIABLE, emptyList,
267 List<Integer> emptyList = emptyList();
269 new IteratorTester<Integer>(1, MODIFIABLE, emptyList,
292 List<Integer> emptyList = emptyList();
294 new IteratorTester<Integer>(1, MODIFIABLE, emptyList,
  /external/guava/guava-tests/test/com/google/common/collect/
PeekingIteratorTest.java 22 import static java.util.Collections.emptyList;
91 actsLikeIteratorHelper(Collections.emptyList());
110 List<?> list = Collections.emptyList();
226 List<Integer> list = emptyList();
  /external/guava/guava-tests/test/com/google/common/primitives/
BytesTest.java 254 assertSame(Collections.emptyList(), Bytes.asList(EMPTY));
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RequestTest.java 154 assertEquals(Collections.<String>emptyList(), request.headers("Cache-Control"));
  /external/vogar/src/vogar/tasks/
BuildActionTask.java 99 throw new CommandFailedException(Collections.<String>emptyList(),
149 throw new CommandFailedException(Collections.<String>emptyList(),
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 176 assertEquals(Collections.<String>emptyList(), log);
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodOverridesTest.java 52 assertEquals(Collections.<Class<?>>emptyList(), Arrays.asList(method.getExceptionTypes()));
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLParametersTest.java 182 p.setSNIMatchers(Collections.<SNIMatcher>emptyList());

Completed in 952 milliseconds

1 2 3 4 5 6