Home
last modified time | relevance | path

Searched refs:startView (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/core/java/android/transition/
H A DVisibility.java368 final View startView = startValues.view; in onDisappear() local
374 View savedOverlayView = (View) startView.getTag(R.id.transition_overlay_view_tag); in onDisappear()
397 if (startView == endView) { in onDisappear()
409 if (startView.getParent() == null) { in onDisappear()
411 overlayView = startView; in onDisappear()
412 } else if (startView.getParent() instanceof View) { in onDisappear()
413 View startParent = (View) startView.getParent(); in onDisappear()
420 overlayView = TransitionUtils.copyViewImage(sceneRoot, startView, in onDisappear()
429 overlayView = startView; in onDisappear()
459 startView.setTagInternal(R.id.transition_overlay_view_tag, overlayView); in onDisappear()
[all …]
H A DTransition.java554 View startView = startItemIds.valueAt(i); in matchItemIds() local
555 if (startView != null && isValidTarget(startView)) { in matchItemIds()
558 TransitionValues startValues = unmatchedStart.get(startView); in matchItemIds()
563 unmatchedStart.remove(startView); in matchItemIds()
581 View startView = startIds.valueAt(i); in matchIds() local
582 if (startView != null && isValidTarget(startView)) { in matchIds()
585 TransitionValues startValues = unmatchedStart.get(startView); in matchIds()
590 unmatchedStart.remove(startView); in matchIds()
608 View startView = startNames.valueAt(i); in matchNames() local
609 if (startView != null && isValidTarget(startView)) { in matchNames()
[all …]
H A DFade.java145 View startView = (startValues != null) ? startValues.view : null; in onAppear() local
147 startView + ", " + view); in onAppear()
H A DChangeTransform.java475 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument
477 mStartView = startView; in GhostListener()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSFragment.java637 private float getTotalBottomMargin(View startView) { in getTotalBottomMargin() argument
639 View child = startView; in getTotalBottomMargin()
640 View parent = (View) startView.getParent(); in getTotalBottomMargin()
/aosp12/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/
H A DDialogLaunchAnimator.kt616 val startView = if (isLaunching) touchSurface else dialogContentWithBackground!! regex
618 val startViewController = GhostedViewLaunchAnimatorController(startView)
/aosp12/frameworks/base/core/java/android/app/
H A DFragmentTransition.java961 private static void bfsAddViewChildren(final List<View> views, final View startView) { in bfsAddViewChildren() argument
963 if (containedBeforeIndex(views, startView, startIndex)) { in bfsAddViewChildren()
966 views.add(startView); in bfsAddViewChildren()
/aosp12/frameworks/base/core/java/android/view/
H A DView.java13119 final View startView = this; in findUserSetNextFocus() local
13123 return root.findViewByPredicateInsideOut(startView, in findUserSetNextFocus()
13125 == startView); in findUserSetNextFocus()