HomeSort by relevance Sort by last modified time
    Searched refs:immutableList (Results 1 - 9 of 9) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Protocol.java 42 Util.immutableList(Arrays.asList(HTTP_2, SPDY_3, HTTP_11));
44 Util.immutableList(Arrays.asList(SPDY_3, HTTP_11));
46 Util.immutableList(Arrays.asList(HTTP_2, HTTP_11));
Handshake.java 58 ? Util.immutableList(peerCertificates)
63 ? Util.immutableList(localCertificates)
72 return new Handshake(cipherSuite, Util.immutableList(peerCertificates),
73 Util.immutableList(localCertificates));
Address.java 63 this.protocols = Util.immutableList(protocols);
OkHttpClient.java 357 protocols = Util.immutableList(protocols);
364 this.protocols = Util.immutableList(protocols);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 263 public static <T> List<T> immutableList(List<T> list) {
268 public static <T> List<T> immutableList(T... elements) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SpdyTransport.java 54 private static final List<ByteString> SPDY_3_PROHIBITED_HEADERS = Util.immutableList(
62 private static final List<ByteString> HTTP_2_PROHIBITED_HEADERS = Util.immutableList(
JavaApiConverter.java 680 return elements == null ? Collections.<T>emptyList() : Util.immutableList(elements);
  /external/guava/guava-tests/test/com/google/common/collect/
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...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 181 protocols = Util.immutableList(protocols);
188 this.npnProtocols = Util.immutableList(protocols);

Completed in 311 milliseconds