/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
H A D | DialogFillUi.java | 124 setServiceIcon(decor, serviceIcon); in DialogFillUi() 126 setHeader(decor, response); in DialogFillUi() 134 initialAuthenticationLayout(decor, response); in DialogFillUi() 144 mListView = decor.findViewById(R.id.autofill_dialog_list); in DialogFillUi() 145 initialDatasetLayout(decor, filterText); in DialogFillUi() 148 setDismissButton(decor); in DialogFillUi() 151 mDialog.setContentView(decor); in DialogFillUi() 195 private void setServiceIcon(View decor, Drawable serviceIcon) { in setServiceIcon() argument 211 private void setHeader(View decor, FillResponse response) { in setHeader() argument 232 private void setDismissButton(View decor) { in setDismissButton() argument [all …]
|
H A D | FillUi.java | 155 final ViewGroup decor; in FillUi() local 164 decor.setClipToOutline(true); in FillUi() 169 final ImageView iconView = decor.findViewById(R.id.autofill_dataset_icon); in FillUi() 188 decor.addOnUnhandledKeyEventListener((View view, KeyEvent event) -> { in FillUi() 236 mContext, decor, interceptionHandler, mThemeId); in FillUi() 259 decor.measure(widthMeasureSpec, heightMeasureSpec); in FillUi() 264 mWindow = new AnchoredWindow(decor, overlayControl); in FillUi() 279 decor.findViewById(R.id.autofill_dataset_header); in FillUi() 290 decor.findViewById(R.id.autofill_dataset_footer); in FillUi() 359 mListView = decor.findViewById(R.id.autofill_dataset_list); in FillUi() [all …]
|
/aosp14/frameworks/base/core/java/android/inputmethodservice/ |
H A D | NavigationBarController.java | 271 final View decor = window.getDecorView(); in updateTouchableInsets() local 312 mTempRect.set(decor.getLeft(), decor.getBottom() - systemInsets.bottom, in updateTouchableInsets() 313 decor.getRight(), decor.getBottom()); in updateTouchableInsets() 328 if (decor instanceof ViewGroup) { in updateTouchableInsets() 329 ViewGroup decorGroup = (ViewGroup) decor; in updateTouchableInsets() 356 final View decor = window.peekDecorView(); in scheduleRelayout() 357 if (decor == null) { in scheduleRelayout() 360 if (!(decor instanceof ViewGroup)) { in scheduleRelayout() 363 final ViewGroup decorGroup = (ViewGroup) decor; in scheduleRelayout() 424 final ViewGroup decor = (ViewGroup) rawDecorView; in onWindowShown() local [all …]
|
H A D | InkWindow.java | 198 final View decor = getDecorView(); in dispatchHandwritingEvent() local 199 Objects.requireNonNull(decor); in dispatchHandwritingEvent() 200 final ViewRootImpl viewRoot = decor.getViewRootImpl(); in dispatchHandwritingEvent()
|
/aosp14/frameworks/base/core/java/com/android/internal/view/menu/ |
H A D | MenuDialogHelper.java | 98 View decor = win.getDecorView(); in onKey() local 99 if (decor != null) { in onKey() 100 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState(); in onKey() 110 View decor = win.getDecorView(); in onKey() local 111 if (decor != null) { in onKey() 112 KeyEvent.DispatcherState ds = decor.getKeyDispatcherState(); in onKey()
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ActivityTransitionState.java | 328 ViewGroup decor = null; in startExitBackTransition() local 332 decor = mEnterTransitionCoordinator.getDecor(); in startExitBackTransition() 335 if (enterViewsTransition != null && decor != null) { in startExitBackTransition() 336 enterViewsTransition.pause(decor); in startExitBackTransition() 344 if (enterViewsTransition != null && decor != null) { in startExitBackTransition() 345 enterViewsTransition.resume(decor); in startExitBackTransition() 347 if (delayExitBack && decor != null) { in startExitBackTransition() 348 final ViewGroup finalDecor = decor; in startExitBackTransition() 349 OneShotPreDrawListener.add(decor, () -> { in startExitBackTransition()
|
H A D | ActivityTransitionCoordinator.java | 865 ViewGroup decor = getDecor(); in moveSharedElementsToOverlay() local 866 if (decor != null) { in moveSharedElementsToOverlay() 874 decor.transformMatrixToLocal(tempMatrix); in moveSharedElementsToOverlay() 915 ViewGroup decor = getDecor(); in moveSharedElementsFromOverlay() local 916 if (decor != null) { in moveSharedElementsFromOverlay() 917 ViewGroupOverlay overlay = decor.getOverlay(); in moveSharedElementsFromOverlay() 964 final View decor = getDecor(); in startInputWhenTransitionsComplete() local 965 if (decor != null) { in startInputWhenTransitionsComplete() 976 final View decor = getDecor(); in pauseInput() local 977 final ViewRootImpl viewRoot = decor == null ? null : decor.getViewRootImpl(); in pauseInput() [all …]
|
H A D | EnterTransitionCoordinator.java | 159 final ViewGroup decor = getDecor(); in triggerViewsReady() local 161 if (decor == null || (decor.isAttachedToWindow() && in triggerViewsReady() 165 mViewsReadyListener = OneShotPreDrawListener.add(decor, () -> { in triggerViewsReady() 169 decor.invalidate(); in triggerViewsReady() 284 final ViewGroup decor = getDecor(); in forceViewsToAppear() local 285 if (decor != null && mViewsReadyListener != null) { in forceViewsToAppear()
|
H A D | ExitTransitionCoordinator.java | 286 ViewGroup decor = getDecor(); in fadeOutBackground() local 288 if (decor != null && (background = decor.getBackground()) != null) { in fadeOutBackground()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/ |
H A D | DesktopModeWindowDecorViewModel.java | 209 DesktopModeWindowDecoration decor = mWindowDecorByTaskId.get(taskId); in setSplitScreenController() 210 if (decor != null && DesktopModeStatus.isActive(mContext) in setSplitScreenController() 211 && decor.mTaskInfo.getWindowingMode() == WINDOWING_MODE_FREEFORM) { in setSplitScreenController() 213 mDesktopTasksController.ifPresent(c -> c.moveToSplit(decor.mTaskInfo)); in setSplitScreenController() 250 final DesktopModeWindowDecoration decor = mWindowDecorByTaskId.valueAt(i); in onTransitionMerged() local 251 decor.mergeTransitionPausingRelayout(merged, playing); in onTransitionMerged() 258 final DesktopModeWindowDecoration decor = mWindowDecorByTaskId.valueAt(i); in onTransitionFinished() local 259 decor.removeTransitionPausingRelayout(transition); in onTransitionFinished() 817 final DesktopModeWindowDecoration decor = mWindowDecorByTaskId.valueAt(i); in getFocusedDecor() local 818 if (decor != null && decor.isFocused()) { in getFocusedDecor() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/decor/ |
H A D | DecorProviderFactory.kt | 17 package com.android.systemui.decor
|
H A D | CutoutDecorProviderFactory.kt | 17 package com.android.systemui.decor
|
H A D | CutoutDecorProviderImpl.kt | 17 package com.android.systemui.decor
|
H A D | RoundedCornerDecorProviderFactory.kt | 17 package com.android.systemui.decor
|
H A D | DecorProvider.kt | 17 package com.android.systemui.decor
|
H A D | PrivacyDotDecorProviderFactory.kt | 17 package com.android.systemui.decor
|
H A D | OverlayWindow.kt | 16 package com.android.systemui.decor
|
H A D | ScreenDecorCommand.kt | 17 package com.android.systemui.decor
|
H A D | RoundedCornerResDelegate.kt | 17 package com.android.systemui.decor
|
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | PixelCopyWindow.java | 83 View decor = getWindow().getDecorView(); in takeScreenshot() local 85 decor.getGlobalVisibleRect(srcRect); in takeScreenshot()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ScreenDecorations.java | 73 import com.android.systemui.decor.CutoutDecorProviderFactory; 74 import com.android.systemui.decor.DebugRoundedCornerDelegate; 75 import com.android.systemui.decor.DebugRoundedCornerModel; 76 import com.android.systemui.decor.DecorProvider; 77 import com.android.systemui.decor.DecorProviderFactory; 78 import com.android.systemui.decor.DecorProviderKt; 79 import com.android.systemui.decor.FaceScanningProviderFactory; 80 import com.android.systemui.decor.OverlayWindow; 81 import com.android.systemui.decor.PrivacyDotDecorProviderFactory; 83 import com.android.systemui.decor.RoundedCornerResDelegateImpl; [all …]
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | WindowDecorActionBar.java | 171 View decor = window.getDecorView(); in WindowDecorActionBar() local 173 init(decor); in WindowDecorActionBar() 175 mContentView = decor.findViewById(android.R.id.content); in WindowDecorActionBar() 193 private void init(View decor) { in init() argument 194 mOverlayLayout = (ActionBarOverlayLayout) decor.findViewById( in init() 199 mDecorToolbar = getDecorToolbar(decor.findViewById(com.android.internal.R.id.action_bar)); in init() 200 mContextView = (ActionBarContextView) decor.findViewById( in init() 202 mContainerView = (ActionBarContainer) decor.findViewById( in init() 204 mSplitView = (ActionBarContainer) decor.findViewById( in init()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ |
H A D | ScreenDecorationsTest.java | 83 import com.android.systemui.decor.CornerDecorProvider; 84 import com.android.systemui.decor.CutoutDecorProviderFactory; 85 import com.android.systemui.decor.CutoutDecorProviderImpl; 86 import com.android.systemui.decor.DebugRoundedCornerModel; 87 import com.android.systemui.decor.DecorProvider; 88 import com.android.systemui.decor.DecorProviderFactory; 89 import com.android.systemui.decor.FaceScanningOverlayProviderImpl; 90 import com.android.systemui.decor.FaceScanningProviderFactory; 91 import com.android.systemui.decor.OverlayWindow; 93 import com.android.systemui.decor.PrivacyDotDecorProviderFactory; [all …]
|
H A D | FaceScanningProviderFactoryTest.kt | 28 import com.android.systemui.decor.FaceScanningProviderFactory
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/decor/ |
H A D | PrivacyDotDecorProviderFactoryTest.kt | 17 package com.android.systemui.decor
|