/packages/apps/Dialer/java/com/android/incallui/incall/impl/ |
D | ButtonController.java | 65 @NonNull protected final InCallButtonUiDelegate delegate; field in ButtonController.CheckableButtonController 75 @NonNull InCallButtonUiDelegate delegate, in CheckableButtonController() 79 Assert.isNotNull(delegate); in CheckableButtonController() 80 this.delegate = delegate; in CheckableButtonController() 160 @NonNull InCallButtonUiDelegate delegate, in SimpleCheckableButtonController() 167 delegate, in SimpleCheckableButtonController() 188 protected final InCallButtonUiDelegate delegate; field in ButtonController.NonCheckableButtonController 196 InCallButtonUiDelegate delegate, in NonCheckableButtonController() argument 199 this.delegate = delegate; in NonCheckableButtonController() 265 InCallButtonUiDelegate delegate, in SimpleNonCheckableButtonController() argument [all …]
|
/packages/apps/TV/common/src/com/android/tv/common/support/tis/ |
D | WrappedSession.java | 39 private final TifSession delegate; field in WrappedSession 48 this.delegate = sessionFactory.create(this, inputId); in WrappedSession() 53 delegate.onRelease(); in onRelease() 59 return delegate.onSetSurface(surface); in onSetSurface() 64 delegate.onSurfaceChanged(format, width, height); in onSurfaceChanged() 69 delegate.onSetStreamVolume(volume); in onSetStreamVolume() 74 return delegate.onTune(channelUri); in onTune() 79 delegate.onSetCaptionEnabled(enabled); in onSetCaptionEnabled() 84 delegate.onUnblockContent(unblockedRating); in onUnblockContent() 90 return delegate.onTimeShiftGetCurrentPosition(); in onTimeShiftGetCurrentPosition() [all …]
|
/packages/apps/Dialer/java/com/android/incallui/videosurface/impl/ |
D | VideoSurfaceTextureImpl.java | 40 private VideoSurfaceDelegate delegate; field in VideoSurfaceTextureImpl 54 public void setDelegate(VideoSurfaceDelegate delegate) { in setDelegate() argument 55 LogUtil.i("VideoSurfaceTextureImpl.setDelegate", "delegate: " + delegate + " " + toString()); in setDelegate() 56 this.delegate = delegate; in setDelegate() 160 if (delegate != null) { in onSurfaceCreated() 161 delegate.onSurfaceCreated(this); in onSurfaceCreated() 168 if (delegate != null) { in onSurfaceReleased() 169 delegate.onSurfaceReleased(this); in onSurfaceReleased() 227 if (delegate != null) { in onSurfaceTextureDestroyed() 228 delegate.onSurfaceDestroyed(VideoSurfaceTextureImpl.this); in onSurfaceTextureDestroyed() [all …]
|
/packages/apps/TV/common/src/com/android/tv/common/feature/ |
D | TestableFeature.java | 39 public static TestableFeature createTestableFeature(Feature delegate) { in createTestableFeature() argument 40 return new TestableFeature(delegate); in createTestableFeature() 44 public static TestableFeature createTestableFeature(Feature delegate, Boolean initialValue) { in createTestableFeature() argument 45 return new TestableFeature(delegate, initialValue); in createTestableFeature() 48 private TestableFeature(Feature delegate) { in TestableFeature() argument 49 mDelegate = delegate; in TestableFeature() 52 private TestableFeature(Feature delegate, Boolean initialValue) { in TestableFeature() argument 53 mDelegate = delegate; in TestableFeature()
|
/packages/apps/Dialer/java/com/android/incallui/answer/impl/ |
D | AnswerVideoCallScreen.java | 38 @NonNull private final VideoCallScreenDelegate delegate; field in AnswerVideoCallScreen 50 delegate = in AnswerVideoCallScreen() 53 delegate.initVideoCallScreenDelegate(fragment.getContext(), this); in AnswerVideoCallScreen() 62 delegate.onVideoCallScreenUiReady(); in onVideoScreenStart() 63 delegate.getLocalVideoSurfaceTexture().attachToTextureView(textureView); in onVideoScreenStart() 69 delegate.onVideoCallScreenUiUnready(); in onVideoScreenStop() 121 Point cameraDimensions = delegate.getLocalVideoSurfaceTexture().getSurfaceDimensions(); in updatePreviewVideoScaling() 128 textureView, cameraDimensions.x, cameraDimensions.y, delegate.getDeviceOrientation()); in updatePreviewVideoScaling() 133 textureView, cameraDimensions.y, cameraDimensions.x, delegate.getDeviceOrientation()); in updatePreviewVideoScaling()
|
/packages/apps/Car/Launcher/src/com/android/car/carlauncher/ |
D | ContextualViewModel.java | 75 for (LiveData<ContextualInfo> delegate : mInfoDelegates) { in ContextualViewModel() 76 mContextualInfo.addSource(delegate, observer); in ContextualViewModel() 81 for (LiveData<ContextualInfo> delegate : mInfoDelegates) { in updateLiveData() 82 ContextualInfo value = delegate.getValue(); in updateLiveData()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
D | ObservableFrameServer.java | 55 private SessionImpl(Session delegate) { in SessionImpl() argument 57 mDelegate = delegate; in SessionImpl() 77 public ObservableFrameServer(FrameServer delegate) { in ObservableFrameServer() argument 78 mDelegate = delegate; in ObservableFrameServer()
|
/packages/apps/Dialer/java/com/android/dialer/app/settings/ |
D | AppCompatPreferenceActivity.java | 33 private AppCompatDelegate delegate; field in AppCompatPreferenceActivity 116 if (delegate == null) { in getDelegate() 117 delegate = AppCompatDelegate.create(this, null); in getDelegate() 119 return delegate; in getDelegate()
|
/packages/apps/TV/src/com/android/tv/util/ |
D | TvInputManagerHelper.java | 84 private final TvInputManager delegate; field in TvInputManagerHelper.TvInputManagerImpl 86 private TvInputManagerImpl(TvInputManager delegate) { in TvInputManagerImpl() argument 87 this.delegate = delegate; in TvInputManagerImpl() 92 return delegate.getTvInputInfo(inputId); in getTvInputInfo() 97 return delegate.getInputState(inputId); in getInputState() 102 delegate.registerCallback(internalCallback, handler); in registerCallback() 107 delegate.unregisterCallback(internalCallback); in unregisterCallback() 112 return delegate.getTvInputList(); in getTvInputList() 117 return delegate.getTvContentRatingSystemList(); in getTvContentRatingSystemList()
|
/packages/apps/Dialer/java/com/android/dialer/common/concurrent/ |
D | DialerExecutorModule.java | 114 static ListeningExecutorService provideLightweightExecutor(@UiParallel ExecutorService delegate) { 115 return MoreExecutors.listeningDecorator(delegate); 122 @NonUiParallel ExecutorService delegate) { 123 return MoreExecutors.listeningDecorator(delegate);
|
/packages/apps/Contacts/tests/src/com/android/contacts/interactions/ |
D | TestLoaderManager.java | 57 public void setDelegate(LoaderManager delegate) { in setDelegate() argument 58 if (delegate == null || (mDelegate != null && mDelegate != delegate)) { in setDelegate() 62 mDelegate = delegate; in setDelegate()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/mockable/ |
D | MediaControllerFactory.java | 33 static MediaController wrap(android.media.session.MediaController delegate) { in wrap() argument 35 return (delegate != null) ? new MediaController(delegate) : null; in wrap()
|
D | MediaBrowserFactory.java | 34 static MediaBrowser wrap(android.media.browse.MediaBrowser delegate) { in wrap() argument 36 return (delegate != null) ? new MediaBrowser(delegate) : null; in wrap()
|
D | MediaController.java | 47 MediaController(@NonNull android.media.session.MediaController delegate) { in MediaController() argument 48 mDelegate = delegate; in MediaController() 49 mTransportDelegate = delegate.getTransportControls(); in MediaController()
|
/packages/apps/Gallery2/src/com/android/photos/ |
D | MultiChoiceManager.java | 76 public void setDelegate(Delegate delegate) { in setDelegate() argument 77 if (mDelegate == delegate) { in setDelegate() 83 mDelegate = delegate; in setDelegate() 192 public BulkDeleteTask(Delegate delegate, List<Object> paths) { in BulkDeleteTask() argument 193 mDelegate = delegate; in BulkDeleteTask()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/ |
D | TrustedCredentialsDialogBuilder.java | 55 public TrustedCredentialsDialogBuilder(Activity activity, DelegateInterface delegate) { in TrustedCredentialsDialogBuilder() argument 57 mDialogEventHandler = new DialogEventHandler(activity, delegate); in TrustedCredentialsDialogBuilder() 108 public DialogEventHandler(Activity activity, DelegateInterface delegate) { in DialogEventHandler() argument 112 mDelegate = delegate; in DialogEventHandler()
|
/packages/apps/Settings/src/com/android/settings/ |
D | TrustedCredentialsDialogBuilder.java | 55 public TrustedCredentialsDialogBuilder(Activity activity, DelegateInterface delegate) { in TrustedCredentialsDialogBuilder() argument 57 mDialogEventHandler = new DialogEventHandler(activity, delegate); in TrustedCredentialsDialogBuilder() 108 public DialogEventHandler(Activity activity, DelegateInterface delegate) { in DialogEventHandler() argument 112 mDelegate = delegate; in DialogEventHandler()
|
/packages/apps/Launcher3/src/com/android/launcher3/folder/ |
D | PreviewBackground.java | 318 private void delegateDrawing(CellLayout delegate, int cellX, int cellY) { in delegateDrawing() argument 319 if (mDrawingDelegate != delegate) { in delegateDrawing() 320 delegate.addFolderBackground(this); in delegateDrawing() 323 mDrawingDelegate = delegate; in delegateDrawing()
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | SynchronousProfileProvider.java | 30 public SynchronousProfileProvider(ContactsProvider2 delegate) { in SynchronousProfileProvider() argument 31 super(delegate); in SynchronousProfileProvider()
|
/packages/apps/Camera2/src/com/android/camera/async/ |
D | ForwardingObservable.java | 31 public ForwardingObservable(Observable<T> delegate) { in ForwardingObservable() argument 32 mDelegate = delegate; in ForwardingObservable()
|
D | ForwardingBufferQueue.java | 28 public ForwardingBufferQueue(BufferQueue<T> delegate) { in ForwardingBufferQueue() argument 29 mDelegate = delegate; in ForwardingBufferQueue()
|
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/inputconsumers/ |
D | DelegateInputConsumer.java | 18 public DelegateInputConsumer(InputConsumer delegate, InputMonitorCompat inputMonitor) { in DelegateInputConsumer() argument 19 mDelegate = delegate; in DelegateInputConsumer()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/ |
D | ForwardingImageReader.java | 28 public ForwardingImageReader(ImageReaderProxy delegate) { in ForwardingImageReader() argument 29 mDelegate = delegate; in ForwardingImageReader()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
D | CloseWhenDoneImageReader.java | 64 public CloseWhenDoneImageReader(ImageReaderProxy delegate) { in CloseWhenDoneImageReader() argument 65 super(delegate); in CloseWhenDoneImageReader()
|
D | LoggingImageReader.java | 52 public LoggingImageReader(ImageReaderProxy delegate, Logger.Factory logFactory) { in LoggingImageReader() argument 53 super(delegate); in LoggingImageReader()
|