/frameworks/base/core/tests/coretests/src/android/view/ |
D | TestScrollCaptureCallback.java | 39 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument 41 mSearchConsumer = onReady; in onScrollCaptureSearch() 47 @NonNull CancellationSignal signal, @NonNull Runnable onReady) { in onScrollCaptureStart() argument 49 mStartOnReady = onReady; in onScrollCaptureStart() 63 public void onScrollCaptureEnd(@NonNull Runnable onReady) { in onScrollCaptureEnd() argument 64 mOnEndReady = onReady; in onScrollCaptureEnd()
|
D | ScrollCaptureSearchResultsTest.java | 275 @NonNull Consumer<Rect> onReady) { in testWithCallbackMultipleReplies() 276 onReady.accept(new Rect(1, 2, 3, 4)); in testWithCallbackMultipleReplies() 277 onReady.accept(new Rect(9, 10, 11, 12)); in testWithCallbackMultipleReplies() 344 public void onScrollCaptureSearch(CancellationSignal signal, Consumer<Rect> onReady) { in onScrollCaptureSearch() argument 348 onReady.accept(b); in onScrollCaptureSearch() 354 Runnable onReady) { in onScrollCaptureStart() argument 355 run(onReady); in onScrollCaptureStart() 360 CancellationSignal signal, Rect captureArea, Consumer<Rect> onReady) { in onScrollCaptureImageRequest() argument 361 run(() -> onReady.accept(captureArea)); in onScrollCaptureImageRequest() 365 public void onScrollCaptureEnd(Runnable onReady) { in onScrollCaptureEnd() argument [all …]
|
D | ImeBackAnimationControllerTest.java | 177 animationControlListener.onReady(mWindowInsetsAnimationController, ime()); in testAdjustPanScrollsViewRoot() 196 animationControlListener.onReady(mWindowInsetsAnimationController, ime()); in testNewGestureAfterCancelSeamlessTakeover() 224 animationControlListener.onReady(mWindowInsetsAnimationController, ime()); in testImeInsetsManipulationCurve() 259 animationControlListener.onReady(mWindowInsetsAnimationController, ime()); in testOnReadyAfterGestureFinished()
|
D | InsetsControllerTest.java | 222 verify(mockListener).onReady(animationController.capture(), anyInt()); in testControlsRevoked_duringAnim() 249 verify(controlListener, never()).onReady(any(), anyInt()); in testFrameDoesntOverlapWithInsets() 269 verify(loggingListener).onReady(notNull(), anyInt()); in testSystemDrivenInsetsAnimationLoggingListener_onReady() 521 verify(mockListener).onReady(controllerCaptor.capture(), anyInt()); in testAnimationEndState_controller() 546 verify(mockListener).onReady(any(), anyInt()); in testCancellation_afterGainingControl() 570 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady() 578 verify(listener).onReady(notNull(), eq(ime())); in testControlImeNotReady() 595 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_controlRevoked() 616 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_timeout() 642 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_cancel() [all …]
|
D | ViewGroupScrollCaptureTest.java | 495 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument 500 @NonNull CancellationSignal signal, @NonNull Runnable onReady) { in onScrollCaptureStart() argument 510 public void onScrollCaptureEnd(@NonNull Runnable onReady) { in onScrollCaptureEnd() argument
|
/frameworks/base/core/java/android/view/ |
D | ScrollCaptureCallback.java | 85 void onScrollCaptureSearch(@NonNull CancellationSignal signal, @NonNull Consumer<Rect> onReady); in onScrollCaptureSearch() argument 103 @NonNull CancellationSignal signal, @NonNull Runnable onReady); in onScrollCaptureStart() argument 152 void onScrollCaptureEnd(@NonNull Runnable onReady); in onScrollCaptureEnd() argument
|
D | WindowInsetsAnimationControlListener.java | 56 void onReady(@NonNull WindowInsetsAnimationController controller, @InsetsType int types); in onReady() method
|
D | InsetsAnimationThreadControlRunner.java | 129 listener.onReady(mControl, types); in InsetsAnimationThreadControlRunner()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/ |
D | FoldAodAnimationController.kt | 149 fun onScreenTurningOn(onReady: Runnable) = in <lambda>() 154 onReady.run() in <lambda>() 156 pendingScrimReadyCallback = onReady in <lambda>() 172 shadeFoldAnimator.view?.let { OneShotPreDrawListener.add(it, onReady) } in <lambda>() 174 onReady.run() in <lambda>() 178 onReady.run() in <lambda>()
|
D | FoldLightRevealOverlayAnimation.kt | 116 val onReady = readyCallback?.await() in <lambda>() constant 118 controller.addOverlay(ALPHA_OPAQUE, onReady) in <lambda>() 130 val onReady = readyCallback?.takeIf { it.isCompleted }?.getCompleted() in <lambda>() constant 131 onReady?.run() in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
D | MenuInfoRepository.java | 162 callback.onReady( in loadMenuMoveToTucked() 168 callback.onReady(Prefs.getBoolean(mContext, in loadDockTooltipVisibility() 174 callback.onReady(mSecureSettings.getIntForUser( in loadMigrationTooltipVisibility() 181 callback.onReady(mPercentagePosition); in loadMenuPosition() 185 callback.onReady(getTargets(mContext, SOFTWARE)); in loadMenuTargetFeatures() 189 callback.onReady(getMenuSizeTypeFromSettings()); in loadMenuSizeType() 193 callback.onReady(getMenuFadeEffectInfo()); in loadMenuFadeEffectInfo() 295 void onReady(T info); in onReady() method
|
/frameworks/base/core/java/com/android/internal/view/ |
D | ScrollCaptureViewSupport.java | 201 public final void onScrollCaptureSearch(CancellationSignal signal, Consumer<Rect> onReady) { in onScrollCaptureSearch() argument 210 onReady.accept(mViewHelper.onComputeScrollBounds(view)); in onScrollCaptureSearch() 213 onReady.accept(null); in onScrollCaptureSearch() 218 Runnable onReady) { in onScrollCaptureStart() argument 234 onReady.run(); in onScrollCaptureStart() 295 public final void onScrollCaptureEnd(Runnable onReady) { in onScrollCaptureEnd() argument 305 onReady.run(); in onScrollCaptureEnd()
|
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
D | MainInteractionService.java | 63 public void onReady() { in onReady() method in MainInteractionService 64 super.onReady(); in onReady()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
D | ClipboardTransitionExecutor.kt | 40 fun startSharedTransition(window: Window, view: View, intent: Intent, onReady: Runnable) { in startSharedTransition() 50 onReady.run() in startSharedTransition()
|
/frameworks/libs/native_bridge_support/android_api/libcamera2ndk/proxy/ |
D | android_camera_checks.h | 65 CHECK_FIELD_LAYOUT(ACameraCaptureSession_stateCallbacks, onReady, 64, 32); 112 CHECK_FIELD_LAYOUT(ACameraCaptureSession_stateCallbacks, onReady, 128, 64);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
D | CallbackProxies.java | 71 public void onReady(CameraCaptureSession session) { in onReady() method in CallbackProxies.SessionStateCallbackProxy 74 mExecutor.execute(() -> mCallback.onReady(session)); in onReady()
|
D | CameraConstrainedHighSpeedCaptureSessionImpl.java | 392 public void onReady(CameraCaptureSession session) { in onReady() method in CameraConstrainedHighSpeedCaptureSessionImpl.WrapperCallback 393 mCallback.onReady(CameraConstrainedHighSpeedCaptureSessionImpl.this); in onReady()
|
/frameworks/base/telephony/java/android/telephony/ims/feature/ |
D | ImsTrafficSessionCallback.java | 28 void onReady(); in onReady() method
|
/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
D | IImsTrafficSessionCallback.aidl | 25 void onReady(); in onReady() method
|
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/ |
D | BlockingOfflineSessionCallback.java | 120 public void onReady(CameraOfflineSession session) { in onReady() method in BlockingOfflineSessionCallback 122 mProxy.onReady(session); in onReady()
|
D | BlockingSessionCallback.java | 188 public void onReady(CameraCaptureSession session) { in onReady() method in BlockingSessionCallback 191 mProxy.onReady(session); in onReady()
|
/frameworks/base/core/java/android/hardware/camera2/ |
D | CameraOfflineSession.java | 64 public abstract void onReady(@NonNull CameraOfflineSession session); in onReady() method in CameraOfflineSession.CameraOfflineSessionCallback
|
D | CameraCaptureSession.java | 1079 public void onReady(@NonNull CameraCaptureSession session) { in onReady() method in CameraCaptureSession.StateCallback
|
/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/ |
D | ChatActivity.java | 103 public void onReady( in onCreate() 198 public void onReady( in onCreate()
|
/frameworks/base/core/java/android/service/ondeviceintelligence/ |
D | OnDeviceIntelligenceService.java | 130 obtainMessage(OnDeviceIntelligenceService::onReady, in onBind() 267 public void onReady() {
|