Searched refs:startView (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/core/java/android/transition/ |
D | Visibility.java | 372 final View startView = startValues.view; in onDisappear() local 378 View savedOverlayView = (View) startView.getTag(R.id.transition_overlay_view_tag); in onDisappear() 401 if (startView == endView) { in onDisappear() 413 if (startView.getParent() == null) { in onDisappear() 415 overlayView = startView; in onDisappear() 416 } else if (startView.getParent() instanceof View) { in onDisappear() 417 View startParent = (View) startView.getParent(); in onDisappear() 424 overlayView = TransitionUtils.copyViewImage(sceneRoot, startView, in onDisappear() 433 overlayView = startView; in onDisappear() 463 startView.setTagInternal(R.id.transition_overlay_view_tag, overlayView); in onDisappear() [all …]
|
D | Transition.java | 558 View startView = startItemIds.valueAt(i); in matchItemIds() local 559 if (startView != null && isValidTarget(startView)) { in matchItemIds() 562 TransitionValues startValues = unmatchedStart.get(startView); in matchItemIds() 567 unmatchedStart.remove(startView); in matchItemIds() 585 View startView = startIds.valueAt(i); in matchIds() local 586 if (startView != null && isValidTarget(startView)) { in matchIds() 589 TransitionValues startValues = unmatchedStart.get(startView); in matchIds() 594 unmatchedStart.remove(startView); in matchIds() 612 View startView = startNames.valueAt(i); in matchNames() local 613 if (startView != null && isValidTarget(startView)) { in matchNames() [all …]
|
D | Fade.java | 145 View startView = (startValues != null) ? startValues.view : null; in onAppear() local 147 startView + ", " + view); in onAppear()
|
D | ChangeTransform.java | 478 public GhostListener(View view, View startView, GhostView ghostView) { in GhostListener() argument 480 mStartView = startView; in GhostListener()
|
/frameworks/base/core/java/android/app/ |
D | FragmentTransition.java | 961 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()
|
/frameworks/base/core/java/android/view/ |
D | View.java | 14774 final View startView = this; 14778 return root.findViewByPredicateInsideOut(startView, 14780 == startView);
|