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

1234567891011>>

/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCEAGLVideoView.h44 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate; variable
H A DRTCNSGLVideoView.h45 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate; variable
H A DRTCMediaStreamTrack.h46 @property(nonatomic, weak) id<RTCMediaStreamTrackDelegate> delegate; variable
/external/webrtc/webrtc/api/objc/
H A DRTCEAGLVideoView.h31 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate; variable
H A DRTCNSGLVideoView.h30 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate; variable
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
H A DARDMainView.h28 @property(nonatomic, weak) id<ARDMainViewDelegate> delegate; variable
H A DARDVideoCallView.h40 @property(nonatomic, weak) id<ARDVideoCallViewDelegate> delegate; variable
/external/walt/ios/WALT/
H A DMIDIClient.h56 @property (nonatomic, weak) id<MIDIClientDelegate> delegate; variable
/external/webrtc/webrtc/examples/objc/AppRTCDemo/
H A DARDAppClient.h25 // The delegate is informed of pertinent events and will be called on the
54 // the delegate.
57 @property(nonatomic, weak) id<ARDAppClientDelegate> delegate; variable
59 // Convenience constructor since all expected use cases will need a delegate
61 - (instancetype)initWithDelegate:(id<ARDAppClientDelegate>)delegate;
H A DARDSignalingChannel.h42 @property(nonatomic, weak) id<ARDSignalingChannelDelegate> delegate; variable
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DJava8ExtendedSSLSession.java31 public Java8ExtendedSSLSession(ConscryptSession delegate) { argument
32 super(delegate);
/external/conscrypt/android/src/main/java/org/conscrypt/
H A DKitKatPlatformOpenSSLSocketAdapterFactory.java28 public KitKatPlatformOpenSSLSocketAdapterFactory(OpenSSLSocketFactoryImpl delegate) { argument
29 super(delegate);
H A DPreKitKatPlatformOpenSSLSocketAdapterFactory.java27 public PreKitKatPlatformOpenSSLSocketAdapterFactory(OpenSSLSocketFactoryImpl delegate) { argument
28 super(delegate);
/external/dagger2/core/src/main/java/dagger/internal/
H A DDelegateFactory.java26 private Provider<T> delegate; field in class:DelegateFactory
30 if (delegate == null) {
33 return delegate.get();
36 public void setDelegatedProvider(Provider<T> delegate) { argument
37 if (delegate == null) {
40 if (this.delegate != null) {
43 this.delegate = delegate;
H A DMembersInjectors.java58 public static <T> MembersInjector<T> delegatingTo(MembersInjector<? super T> delegate) { argument
59 return (MembersInjector<T>) delegate;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingObject.java26 * The {@link #delegate()} method must be overridden to return the instance
45 * <p>The {@code toString} method is forwarded to the delegate. Although this
59 * Returns the backing delegate instance that methods are forwarded to.
62 * ForwardingSet#delegate}. Concrete subclasses override this method to supply
65 protected abstract Object delegate(); method in class:ForwardingObject
68 * Returns the string representation generated by the delegate's
72 return delegate().toString();
H A DForwardingIterator.java39 @Override protected abstract Iterator<T> delegate(); method in class:ForwardingIterator
43 return delegate().hasNext();
48 return delegate().next();
53 delegate().remove();
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableEnumSet.java28 static <E> ImmutableSet<E> asImmutable(Set<E> delegate) { argument
29 switch (delegate.size()) {
33 return ImmutableSet.of(Iterables.getOnlyElement(delegate));
35 return new ImmutableEnumSet<E>(delegate);
39 public ImmutableEnumSet(Set<E> delegate) { argument
40 super(delegate);
H A DRegularImmutableBiMap.java32 RegularImmutableBiMap(ImmutableMap<K, V> delegate) { argument
33 super(delegate);
36 for (Entry<K, V> entry : delegate.entrySet()) {
43 RegularImmutableBiMap(ImmutableMap<K, V> delegate, argument
45 super(delegate);
H A DRegularImmutableList.java29 private final List<E> delegate; field in class:RegularImmutableList
31 RegularImmutableList(List<E> delegate) { argument
33 this.delegate = unmodifiableList(delegate);
37 return delegate;
H A DRegularImmutableSet.java29 RegularImmutableSet(Set<E> delegate) { argument
30 super(delegate);
34 checkArgument(delegate.size() >= 2);
H A DRegularImmutableSortedMap.java28 RegularImmutableSortedMap(SortedMap<K, V> delegate, Comparator<? super K> comparator) { argument
29 super(delegate, comparator);
H A DImmutableEnumMap.java38 ImmutableEnumMap(Map<? extends K, ? extends V> delegate) { argument
39 super(WellBehavedMap.wrap(delegate));
/external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
H A DRandomPrivateKeyX509ExtendedKeyManager.java33 * {@link X509ExtendedKeyManager} which forwards all calls to a delegate while substituting
38 public RandomPrivateKeyX509ExtendedKeyManager(X509ExtendedKeyManager delegate) { argument
39 super(delegate);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingListeningExecutorService.java36 protected abstract ListeningExecutorService delegate(); method in class:ForwardingListeningExecutorService
40 return delegate().submit(task);
45 return delegate().submit(task);
50 return delegate().submit(task, result);

Completed in 1627 milliseconds

1234567891011>>