Searched defs:delegate (Results 1 - 5 of 5) sorted by relevance

/libcore/support/src/test/java/libcore/javax/net/ssl/
H A DRandomPrivateKeyX509ExtendedKeyManager.java32 * {@link X509ExtendedKeyManager} which forwards all calls to a delegate while substituting
39 public RandomPrivateKeyX509ExtendedKeyManager(X509ExtendedKeyManager delegate) { argument
40 super(delegate);
H A DForwardingX509ExtendedKeyManager.java31 private final X509ExtendedKeyManager delegate; field in class:ForwardingX509ExtendedKeyManager
33 public ForwardingX509ExtendedKeyManager(X509ExtendedKeyManager delegate) { argument
34 this.delegate = delegate;
39 return delegate.chooseClientAlias(keyType, issuers, socket);
44 return delegate.chooseServerAlias(keyType, issuers, socket);
49 return delegate.getCertificateChain(alias);
54 return delegate.getClientAliases(keyType, issuers);
59 return delegate.getServerAliases(keyType, issuers);
64 return delegate
[all...]
/libcore/support/src/test/java/tests/io/
H A DMockOs.java44 private Os delegate; field in class:MockOs
48 return method.invoke(delegate, args);
70 if (delegate != null) {
73 delegate = Libcore.os;
78 if (delegate == null) {
81 Libcore.os = delegate;
86 * {@code methodName}. If empty, calls will be handled by the delegate.
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java1701 NavigableSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) { argument
1702 this.m = delegate;
1727 DescendingSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) { argument
1728 super(delegate, from, fromBound, to, toBound);
1734 AscendingSubMap(TreeMap<K, V> delegate, K from, Bound fromBound, K to, Bound toBound) { argument
1735 super(delegate, from, fromBound, to, toBound);

Completed in 414 milliseconds