HomeSort by relevance Sort by last modified time
    Searched defs:delegate (Results 1 - 25 of 1378) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/talk/app/webrtc/objc/public/
RTCEAGLVideoView.h 44 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate; variable
RTCNSGLVideoView.h 45 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate; variable
RTCMediaStreamTrack.h 46 @property(nonatomic, weak) id<RTCMediaStreamTrackDelegate> delegate; variable
  /external/webrtc/webrtc/api/objc/
RTCEAGLVideoView.h 31 @property(nonatomic, weak) id<RTCEAGLVideoViewDelegate> delegate; variable
RTCNSGLVideoView.h 30 @property(nonatomic, weak) id<RTCNSGLVideoViewDelegate> delegate; variable
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDMainView.h 28 @property(nonatomic, weak) id<ARDMainViewDelegate> delegate; variable
ARDVideoCallView.h 40 @property(nonatomic, weak) id<ARDVideoCallViewDelegate> delegate; variable
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 22 private final Sink delegate; field in class:ForwardingSink
24 public ForwardingSink(Sink delegate) {
25 if (delegate == null) throw new IllegalArgumentException("delegate == null");
26 this.delegate = delegate;
30 public final Sink delegate() { method in class:ForwardingSink
31 return delegate;
35 delegate.write(source, byteCount);
39 delegate.flush()
    [all...]
ForwardingSource.java 22 private final Source delegate; field in class:ForwardingSource
24 public ForwardingSource(Source delegate) {
25 if (delegate == null) throw new IllegalArgumentException("delegate == null");
26 this.delegate = delegate;
30 public final Source delegate() { method in class:ForwardingSource
31 return delegate;
35 return delegate.read(sink, byteCount);
39 return delegate.timeout()
    [all...]
ForwardingTimeout.java 23 private Timeout delegate; field in class:ForwardingTimeout
25 public ForwardingTimeout(Timeout delegate) {
26 if (delegate == null) throw new IllegalArgumentException("delegate == null");
27 this.delegate = delegate;
31 public final Timeout delegate() { method in class:ForwardingTimeout
32 return delegate;
35 public final ForwardingTimeout setDelegate(Timeout delegate) {
36 if (delegate == null) throw new IllegalArgumentException("delegate == null")
    [all...]
  /external/walt/ios/WALT/
MIDIClient.h 56 @property (nonatomic, weak) id<MIDIClientDelegate> delegate; variable
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient.h 25 // 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;
ARDSignalingChannel.h 42 @property(nonatomic, weak) id<ARDSignalingChannelDelegate> delegate; variable
  /external/slf4j/osgi-over-slf4j/src/main/java/org/slf4j/osgi/logservice/impl/
LogServiceImpl.java 53 private final Logger delegate; field in class:LogServiceImpl
67 delegate = LoggerFactory.getLogger(name + '.' + version);
79 delegate.debug(message);
82 delegate.error(message);
85 delegate.info(message);
88 delegate.warn(message);
104 delegate.debug(message, exception);
107 delegate.error(message, exception);
110 delegate.info(message, exception);
113 delegate.warn(message, exception)
    [all...]
  /art/test/958-methodhandle-stackframe/src-art/
Main.java 70 private final MethodHandle delegate; field in class:Main.DelegatingTransformer
72 public DelegatingTransformer(MethodHandle delegate) {
73 super(delegate.type());
74 this.delegate = delegate;
79 delegate.invoke(stackFrame);
89 MethodHandle delegate = new DelegatingTransformer(specialFunctionHandle); local
96 // delegate.invokeExact(false, 'h', (short) 56, 72, Integer.MAX_VALUE + 42l,
100 delegate.invokeExact(false, 'h', (short) 56, 72, Integer.MAX_VALUE + 42l,
105 delegate.invoke(false, 'h', (short) 56, 72, 73
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingObject.java 26 * 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();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularImmutableList.java 29 private final List<E> delegate; field in class:RegularImmutableList
31 RegularImmutableList(List<E> delegate) {
33 this.delegate = unmodifiableList(delegate);
37 return delegate;
RegularImmutableSet.java 29 RegularImmutableSet(Set<E> delegate) {
30 super(delegate);
34 checkArgument(delegate.size() >= 2);
  /external/sfntly/cpp/src/test/
platform_thread.cc 24 PlatformThread::Delegate* delegate = local
25 static_cast<PlatformThread::Delegate*>(params);
26 delegate->ThreadMain();
31 bool PlatformThread::Create(Delegate* delegate,
34 *thread_handle = CreateThread(NULL, 0, ThreadFunc, delegate, 0, NULL);
58 PlatformThread::Delegate* delegate =
59 static_cast<PlatformThread::Delegate*>(params)
    [all...]
  /system/bt/service/ipc/
ipc_handler.h 34 IPCHandler(bluetooth::Adapter* adapter, IPCManager::Delegate* delegate);
48 IPCManager::Delegate* delegate() const { return delegate_; } function in class:ipc::IPCHandler
56 // The delegate that is interested in notifications from us.
57 IPCManager::Delegate* delegate_;
  /cts/tests/tests/content/lib/accountaccess/src/com.android.cts.content/
SyncAdapter.java 34 AbstractThreadedSyncAdapter delegate = mock(AbstractThreadedSyncAdapter.class); local
35 when(delegate.onUnsyncableAccount()).thenCallRealMethod();
38 mDelegate = delegate;
41 return delegate;
57 AbstractThreadedSyncAdapter delegate = getCopyOfDelegate(); local
59 if (delegate != null) {
60 delegate.onPerformSync(account, extras, authority, provider, syncResult);
66 AbstractThreadedSyncAdapter delegate = getCopyOfDelegate(); local
68 if (delegate == null) {
71 return delegate.onUnsyncableAccount()
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingObjectTest.java 31 final Object delegate = new Object(); local
33 @Override protected Object delegate() {
34 return delegate;
41 final Set<String> delegate = Sets.newHashSet("foo"); local
43 @Override protected Object delegate() {
44 return delegate;
47 assertEquals(forward.equals(delegate), delegate.equals(forward));
  /external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
AndroidByteBuddyMockMaker.java 18 private final MockMaker delegate; field in class:AndroidByteBuddyMockMaker
22 delegate = new SubclassByteBuddyMockMaker(new AndroidLoadingStrategy());
33 delegate = new SubclassByteBuddyMockMaker();
39 return delegate.createMock(settings, handler);
44 return delegate.getHandler(mock);
49 delegate.resetMock(mock, newHandler, settings);
54 return delegate.isTypeMockable(type);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
ShadowVibrator.java 50 public final Vibrator delegate = mock(Vibrator.class); field in class:ShadowVibrator
54 delegate.vibrate(uid, opPkg, vibe, attributes);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonActionContributor.java 35 LayoutEditorDelegate delegate = LayoutEditorDelegate.fromEditor(part); local
36 if (delegate != null) {
37 delegate.setActiveEditor(part, getActionBars());

Completed in 1072 milliseconds

1 2 3 4 5 6 7 8 91011>>