/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Handshake.java | 58 ? Util.immutableList(peerCertificates) in get() 63 ? Util.immutableList(localCertificates) in get() 72 return new Handshake(cipherSuite, Util.immutableList(peerCertificates), in get() 73 Util.immutableList(localCertificates)); in get()
|
D | OkHttpClient.java | 54 private static final List<Protocol> DEFAULT_PROTOCOLS = Util.immutableList( 57 private static final List<ConnectionSpec> DEFAULT_CONNECTION_SPECS = Util.immutableList( 514 protocols = Util.immutableList(protocols); in setProtocols() 524 this.protocols = Util.immutableList(protocols); in setProtocols() 533 this.connectionSpecs = Util.immutableList(connectionSpecs); in setConnectionSpecs()
|
D | Address.java | 71 this.protocols = Util.immutableList(protocols); in Address() 74 this.connectionSpecs = Util.immutableList(connectionSpecs); in Address()
|
D | MultipartBuilder.java | 209 this.partHeaders = Util.immutableList(partHeaders); in MultipartRequestBody() 210 this.partBodies = Util.immutableList(partBodies); in MultipartRequestBody()
|
D | ConnectionSpec.java | 106 return Util.immutableList(result); in cipherSuites() 120 return Util.immutableList(result); in tlsVersions()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | AddressTest.java | 32 private List<Protocol> protocols = Util.immutableList(Protocol.HTTP_1_1); 33 private List<ConnectionSpec> connectionSpecs = Util.immutableList(ConnectionSpec.MODERN_TLS);
|
D | WebPlatformUrlTest.java | 53 = Util.immutableList("http", "https"); 54 private static final List<String> KNOWN_FAILURES = Util.immutableList(
|
D | URLConnectionTest.java | 887 client.client().setConnectionSpecs(Util.immutableList(ConnectionSpec.MODERN_TLS)); in connectViaHttpProxyToHttpsUsingBadProxyAndHttpResponseCache()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | Http2xStream.java | 63 private static final List<ByteString> SPDY_3_SKIPPED_REQUEST_HEADERS = Util.immutableList( 75 private static final List<ByteString> SPDY_3_SKIPPED_RESPONSE_HEADERS = Util.immutableList( 83 private static final List<ByteString> HTTP_2_SKIPPED_REQUEST_HEADERS = Util.immutableList( 98 private static final List<ByteString> HTTP_2_SKIPPED_RESPONSE_HEADERS = Util.immutableList(
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/ |
D | ExternalSpdyExample.java | 37 .setProtocols(Util.immutableList(Protocol.SPDY_3, Protocol.HTTP_1_1)); in main()
|
D | ExternalHttp2Example.java | 37 .setProtocols(Util.immutableList(Protocol.HTTP_2, Protocol.HTTP_1_1)); in main()
|
D | RouteSelectorTest.java | 49 public final List<ConnectionSpec> connectionSpecs = Util.immutableList(
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | Util.java | 208 public static <T> List<T> immutableList(List<T> list) { in immutableList() method in Util 213 public static <T> List<T> immutableList(T... elements) { in immutableList() method in Util
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | IterablesTest.java | 859 ImmutableList<String> immutableList = ImmutableList.of("a", "b", "c"); 860 assertSame(immutableList, Iterables.unmodifiableIterable(immutableList)); 861 assertSame(immutableList, 862 Iterables.unmodifiableIterable((List<String>) immutableList));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | IterablesTest.java | 944 ImmutableList<String> immutableList = ImmutableList.of("a", "b", "c"); 945 assertSame(immutableList, Iterables.unmodifiableIterable(immutableList)); 946 assertSame(immutableList, 947 Iterables.unmodifiableIterable((List<String>) immutableList));
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/framed/ |
D | FramedServer.java | 43 Util.immutableList(Protocol.HTTP_2, Protocol.SPDY_3);
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
D | MockWebServer.java | 131 = Util.immutableList(Protocol.HTTP_2, Protocol.SPDY_3, Protocol.HTTP_1_1); 244 protocols = Util.immutableList(protocols);
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | NullPointerTesterTest.java | 848 ImmutableList<Integer> immutableList, in checkDefaultValuesForTheseTypes() argument 865 list, immutableList, in checkDefaultValuesForTheseTypes()
|
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/ |
D | JavaApiConverter.java | 854 return elements == null ? Collections.<T>emptyList() : Util.immutableList(elements);
|