/aosp14/frameworks/base/core/tests/coretests/src/android/view/ |
H A 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()
|
H A 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() 348 onReady.accept(b); in onScrollCaptureSearch() 354 Runnable onReady) { in onScrollCaptureStart() argument 355 run(onReady); in onScrollCaptureStart() 361 run(() -> onReady.accept(captureArea)); in onScrollCaptureImageRequest() 365 public void onScrollCaptureEnd(Runnable onReady) { in onScrollCaptureEnd() argument 366 run(onReady); in onScrollCaptureEnd() 401 @NonNull Consumer<Rect> onReady) { in onScrollCaptureSearch() argument [all …]
|
H A D | InsetsControllerTest.java | 219 verify(mockListener).onReady(animationController.capture(), anyInt()); in testControlsRevoked_duringAnim() 246 verify(controlListener, never()).onReady(any(), anyInt()); in testFrameDoesntOverlapWithInsets() 266 verify(loggingListener).onReady(notNull(), anyInt()); in testSystemDrivenInsetsAnimationLoggingListener_onReady() 518 verify(mockListener).onReady(controllerCaptor.capture(), anyInt()); in testAnimationEndState_controller() 543 verify(mockListener).onReady(any(), anyInt()); in testCancellation_afterGainingControl() 567 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady() 575 verify(listener).onReady(notNull(), eq(ime())); in testControlImeNotReady() 592 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_controlRevoked() 613 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_timeout() 639 verify(listener, never()).onReady(any(), anyInt()); in testControlImeNotReady_cancel()
|
H A 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
|
/aosp14/frameworks/base/core/java/android/view/ |
H A 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
|
H A D | WindowInsetsAnimationControlListener.java | 56 void onReady(@NonNull WindowInsetsAnimationController controller, @InsetsType int types); in onReady() method
|
H A D | InsetsAnimationThreadControlRunner.java | 129 listener.onReady(mControl, types); in InsetsAnimationThreadControlRunner()
|
H A D | InsetsResizeAnimationRunner.java | 117 public void onReady(WindowInsetsAnimationController controller, int types) { in onReady() method in InsetsResizeAnimationRunner
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A 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, ACCESSIBILITY_BUTTON)); in loadMenuTargetFeatures() 189 callback.onReady(getMenuSizeTypeFromSettings()); in loadMenuSizeType() 193 callback.onReady(getMenuFadeEffectInfo()); in loadMenuFadeEffectInfo() 289 void onReady(T info); in onReady() method
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/ |
H A D | FoldAodAnimationController.kt | 152 fun onScreenTurningOn(onReady: Runnable) = mainExecutor.execute { 157 onReady.run() 159 pendingScrimReadyCallback = onReady 170 OneShotPreDrawListener.add(it, onReady) 174 onReady.run()
|
/aosp14/frameworks/base/core/java/com/android/internal/view/ |
H A 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()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/clipboardoverlay/ |
H A D | ClipboardTransitionExecutor.kt | 40 fun startSharedTransition(window: Window, view: View, intent: Intent, onReady: Runnable) { 50 onReady.run()
|
/aosp14/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/ |
H A D | MainInteractionService.java | 63 public void onReady() { in onReady() method in MainInteractionService 64 super.onReady(); in onReady()
|
/aosp14/frameworks/base/core/java/android/hardware/camera2/impl/ |
H A D | CallbackProxies.java | 71 public void onReady(CameraCaptureSession session) { in onReady() method in CallbackProxies.SessionStateCallbackProxy 74 mExecutor.execute(() -> mCallback.onReady(session)); in onReady()
|
H A D | CameraConstrainedHighSpeedCaptureSessionImpl.java | 392 public void onReady(CameraCaptureSession session) { in onReady() method in CameraConstrainedHighSpeedCaptureSessionImpl.WrapperCallback 393 mCallback.onReady(CameraConstrainedHighSpeedCaptureSessionImpl.this); in onReady()
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/feature/ |
H A D | ImsTrafficSessionCallback.java | 28 void onReady(); in onReady() method
|
H A D | MmTelFeature.java | 801 public void onReady() { in onReady() method in MmTelFeature.ImsTrafficSessionCallbackWrapper.IImsTrafficSessionCallbackStub 806 () -> mExecutor.execute(() -> callback.onReady())); in onReady() 1831 getImsSmsImpl().onReady(); in onSmsReady()
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
H A D | IImsTrafficSessionCallback.aidl | 25 void onReady(); in onReady() method
|
/aosp14/frameworks/base/core/java/android/hardware/camera2/ |
H A D | CameraOfflineSession.java | 64 public abstract void onReady(@NonNull CameraOfflineSession session); in onReady() method in CameraOfflineSession.CameraOfflineSessionCallback
|
H A D | CameraCaptureSession.java | 1079 public void onReady(@NonNull CameraCaptureSession session) { in onReady() method in CameraCaptureSession.StateCallback
|
/aosp14/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/ |
H A D | ChatActivity.java | 102 public void onReady( in onCreate() 197 public void onReady( in onCreate()
|
H A D | ControllerActivity.java | 179 public void onReady(WindowInsetsAnimationController controller, int types) { in onStartTrackingTouch()
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/stub/ |
H A D | ImsSmsImplBase.java | 533 public void onReady() { in onReady() method in ImsSmsImplBase
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardPasswordView.java | 191 public void onReady(@NonNull WindowInsetsAnimationController controller, in startDisappearAnimation() method
|
/aosp14/frameworks/base/core/java/android/service/voice/ |
H A D | VoiceInteractionService.java | 142 VoiceInteractionService::onReady, VoiceInteractionService.this)); 370 public void onReady() { in onReady() method in VoiceInteractionService
|