Home
last modified time | relevance | path

Searched refs:viewRoot (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/view/
DSurfaceView.java345 final ViewRootImpl viewRoot = getViewRootImpl(); in updateSurfaceAlpha() local
346 if (viewRoot == null) { in updateSurfaceAlpha()
361 final Surface parent = viewRoot.mSurface; in updateSurfaceAlpha()
377 viewRoot.registerRtFrameCallback(frame -> { in updateSurfaceAlpha()
445 ViewRootImpl viewRoot = getViewRootImpl(); in notifyDrawFinished() local
446 if (viewRoot != null) { in notifyDrawFinished()
447 viewRoot.pendingDrawFinished(); in notifyDrawFinished()
454 ViewRootImpl viewRoot = getViewRootImpl(); in onDetachedFromWindow() local
460 if (viewRoot != null) { in onDetachedFromWindow()
461 viewRoot.removeWindowStoppedCallback(this); in onDetachedFromWindow()
[all …]
DInsetsController.java119 public InsetsController(ViewRootImpl viewRoot) { in InsetsController() argument
120 mViewRoot = viewRoot; in InsetsController()
DView.java12990 ViewRootImpl viewRoot = getViewRootImpl();
12991 if (viewRoot != null) {
12992 viewRoot.ensureTouchMode(false);
13169 final ViewRootImpl viewRoot = getViewRootImpl();
13170 if (viewRoot != null) {
13171 final View focusHost = viewRoot.getAccessibilityFocusedHost();
24980 ViewRootImpl viewRoot = getViewRootImpl(); in isInLayout() local
24981 return (viewRoot != null && viewRoot.isInLayout()); in isInLayout()
25002 ViewRootImpl viewRoot = getViewRootImpl(); in requestLayout() local
25003 if (viewRoot != null && viewRoot.isInLayout()) { in requestLayout()
[all …]
DViewGroup.java2811 ViewRootImpl viewRoot = getViewRootImpl(); in findChildWithAccessibilityFocus() local
2812 if (viewRoot == null) { in findChildWithAccessibilityFocus()
2816 View current = viewRoot.getAccessibilityFocusedHost(); in findChildWithAccessibilityFocus()
/frameworks/layoutlib/bridge/src/android/view/
DViewRootImpl_Accessor.java23 public static void dispatchApplyInsets(ViewRootImpl viewRoot, View host) { in dispatchApplyInsets() argument
24 viewRoot.dispatchApplyInsets(host); in dispatchApplyInsets()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DViewTransformationHelper.java214 public void addRemainingTransformTypes(View viewRoot) { in addRemainingTransformTypes() argument
219 while (view != viewRoot.getParent()) { in addRemainingTransformTypes()
226 stack.push(viewRoot); in addRemainingTransformTypes()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/utilities/
DUtilities.java286 ViewRootImpl viewRoot = v.getViewRootImpl(); in getSurface() local
287 if (viewRoot == null) { in getSurface()
290 return viewRoot.mSurface; in getSurface()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DRenderSessionImpl.java381 private static void doLayout(@NonNull BridgeContext context, @NonNull ViewGroup viewRoot, in doLayout() argument
385 measureView(viewRoot, null /*measuredView*/, in doLayout()
390 viewRoot.layout(0, 0, width, height); in doLayout()
391 handleScrolling(context, viewRoot); in doLayout()
400 … private static Result renderAndBuildResult(@NonNull ViewGroup viewRoot, @Nullable Canvas canvas) { in renderAndBuildResult() argument
405 AttachInfo_Accessor.dispatchOnPreDraw(viewRoot); in renderAndBuildResult()
406 viewRoot.draw(canvas); in renderAndBuildResult()
/frameworks/base/core/java/android/widget/
DZoomButtonsController.java506 ViewRootImpl viewRoot = mOwnerView.getViewRootImpl(); in onContainerKey() local
507 if (viewRoot != null) { in onContainerKey()
508 viewRoot.dispatchInputEvent(event); in onContainerKey()
/frameworks/base/core/java/android/app/
DActivityTransitionCoordinator.java965 final ViewRootImpl viewRoot = decor.getViewRootImpl(); in startInputWhenTransitionsComplete() local
966 if (viewRoot != null) { in startInputWhenTransitionsComplete()
967 viewRoot.setPausedForTransition(false); in startInputWhenTransitionsComplete()
976 final ViewRootImpl viewRoot = decor == null ? null : decor.getViewRootImpl(); in pauseInput() local
977 if (viewRoot != null) { in pauseInput()
978 viewRoot.setPausedForTransition(true); in pauseInput()
DActivity.java8145 for (ViewRootImpl viewRoot : views) { in dispatchActivityResult()
8146 if (viewRoot.getView() != null in dispatchActivityResult()
8147 && viewRoot.getView().dispatchActivityResult( in dispatchActivityResult()
DActivityThread.java5814 final ViewRootImpl viewRoot = r.activity.mDecor != null in handleActivityConfigurationChanged() local
5824 if (viewRoot != null) { in handleActivityConfigurationChanged()
5825 viewRoot.onMovedToDisplay(displayId, reportedConfig); in handleActivityConfigurationChanged()
5834 if (viewRoot != null) { in handleActivityConfigurationChanged()
5835 viewRoot.updateConfiguration(displayId); in handleActivityConfigurationChanged()
/frameworks/base/core/java/com/android/internal/policy/
DPhoneWindow.java2105 void onViewRootImplSet(ViewRootImpl viewRoot) {
2106 viewRoot.setActivityConfigCallback(mActivityConfigCallback);