Home
last modified time | relevance | path

Searched refs:excludedView (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
DGestureExclusionTracker.java124 final View excludedView = getView(); in update() local
125 if (excludedView == null || !excludedView.isAttachedToWindow() in update()
126 || !excludedView.isAggregatedVisible()) return GONE; in update()
127 final List<Rect> localRects = excludedView.getSystemGestureExclusionRects(); in update()
131 ViewParent p = excludedView.getParent(); in update()
132 if (p != null && p.getChildVisibleRect(excludedView, mappedRect, null)) { in update()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DViewGroupFadeHelper.kt44 fun fadeOutAllChildrenExcept(root: ViewGroup, excludedView: View, duration: Long, in <lambda>()
48 val viewsToFadeOut = gatherViews(root, excludedView, visibilityIncluder) in <lambda>()
87 private fun gatherViews(root: ViewGroup, excludedView: View, in <lambda>()
90 var parent = excludedView.parent as ViewGroup? in <lambda>()
91 var viewContainingExcludedView = excludedView; in <lambda>()