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

1 2 3 4 5 6 7 8 91011>>

  /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/guice/examples/src/example/xml/
FlashMemory.java 8 return Collections.emptyList();
SimCard.java 8 return Collections.emptyList();
  /external/grpc-grpc-java/core/src/main/java/io/grpc/
Server.java 61 return Collections.emptyList();
72 return Collections.emptyList();
84 return Collections.emptyList();
HandlerRegistry.java 36 return Collections.emptyList();
ServerProvider.java 34 Collections.<Class<?>>emptyList(),
  /external/junit/src/main/java/org/junit/validator/
PublicClassValidator.java 3 import static java.util.Collections.emptyList;
16 private static final List<Exception> NO_VALIDATION_ERRORS = emptyList();
AnnotationValidator.java 7 import static java.util.Collections.emptyList;
22 private static final List<Exception> NO_VALIDATION_ERRORS = emptyList();
  /external/opencensus-java/api/src/test/java/io/opencensus/trace/samplers/
SamplersTest.java 64 Collections.<Span>emptyList()))
75 Collections.<Span>emptyList()))
95 Collections.<Span>emptyList()))
106 Collections.<Span>emptyList()))
151 neverSample, notSampledSpanContext, Collections.<Span>emptyList(), 0.0);
154 alwaysSample, notSampledSpanContext, Collections.<Span>emptyList(), 1.0);
157 fiftyPercentSample, notSampledSpanContext, Collections.<Span>emptyList(), 0.5);
160 twentyPercentSample, notSampledSpanContext, Collections.<Span>emptyList(), 0.2);
163 twoThirdsSample, notSampledSpanContext, Collections.<Span>emptyList(), 2.0 / 3.0);
170 neverSample, sampledSpanContext, Collections.<Span>emptyList(), 1.0)
    [all...]
  /developers/samples/android/ui/text/TextStyling-Kotlin/app/src/main/java/com/android/example/text/styling/parser/
Markdown.kt 29 val elements: List<Element> = emptyList()
  /cts/tests/tests/telephony/current/src/android/telephony/embms/cts/
MbmsGroupCallSessionTest.java 51 mGroupCallSession.startGroupCall(0, Collections.emptyList(), Collections.emptyList(),
67 mGroupCallSession.startGroupCall(0, Collections.emptyList(), Collections.emptyList(),
  /external/archive-patcher/generator/src/test/java/com/google/archivepatcher/generator/
PreDiffPlanTest.java 53 Collections.<QualifiedRecommendation>emptyList(), SORTED_VOID_LIST, SORTED_DEFLATE_LIST);
59 Collections.<QualifiedRecommendation>emptyList(),
68 Collections.<QualifiedRecommendation>emptyList(),
77 Collections.<QualifiedRecommendation>emptyList(),
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/internal/
Utils.java 35 return list == null ? Collections.<T>emptyList() : list;
  /external/mockito/src/main/java/org/mockito/internal/verification/
SingleRegisteredInvocation.java 27 return Collections.emptyList();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/resolution/types/
ResolvedPrimitiveType.java 34 BYTE("byte", Byte.class.getCanonicalName(), Collections.emptyList()),
36 CHAR("char", Character.class.getCanonicalName(), Collections.emptyList()),
39 BOOLEAN("boolean", Boolean.class.getCanonicalName(), Collections.emptyList()),
  /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());
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...]
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...]
LiteTest.java 33 import static java.util.Collections.emptyList;
540 assertEquals(emptyList(), message.getRepeatedBoolList());
542 assertEquals(emptyList(), message.getRepeatedBoolList());
545 assertEquals(emptyList(), builder.getRepeatedBoolList());
550 assertEquals(emptyList(), message.getRepeatedBytesList());
554 assertEquals(emptyList(), message.getRepeatedBytesList());
557 assertEquals(emptyList(), builder.getRepeatedBytesList());
564 assertEquals(emptyList(), message.getRepeatedCordList());
566 assertEquals(emptyList(), message.getRepeatedCordList());
569 assertEquals(emptyList(), builder.getRepeatedCordList())
    [all...]
  /cts/tests/tests/slice/src/android/slice/cts/
SliceProvider.java 70 return Collections.emptyList();
84 Collections.emptyList()).build();
88 Collections.emptyList()).build();
97 Collections.emptyList()).build();
100 Collections.emptyList()).build();
112 Collections.emptyList()).build();
  /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/hamcrest/hamcrest-library/src/test/java/org/hamcrest/collection/
IsIterableWithSizeTest.java 19 assertMatches("Empty iterable", iterableWithSize(0), Collections.emptyList());
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarators/
NoSymbolDeclarator.java 37 return Collections.emptyList();
  /external/mockito/src/test/java/org/mockito/internal/util/
StringUtilTest.java 11 import static java.util.Collections.emptyList;
29 assertThat(StringUtil.join("foo", emptyList())).isEmpty();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
FakeDns.java 30 private List<InetAddress> addresses = Collections.emptyList();
40 this.addresses = Collections.emptyList();

Completed in 1599 milliseconds

1 2 3 4 5 6 7 8 91011>>