Searched refs:startParent (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/transition/
H A DChangeBounds.java260 private boolean parentMatches(View startParent, View endParent) { argument
263 TransitionValues endValues = getMatchedTransitionValues(startParent, true);
265 parentMatches = startParent == endParent;
281 ViewGroup startParent = (ViewGroup) startParentVals.get(PROPNAME_PARENT);
283 if (startParent == null || endParent == null) {
287 if (parentMatches(startParent, endParent)) {
H A DChangeTransform.java232 ViewGroup startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
234 boolean handleParentChange = mReparent && !parentsMatch(startParent, endParent);
352 private boolean parentsMatch(ViewGroup startParent, ViewGroup endParent) { argument
354 if (!isValidTarget(startParent) || !isValidTarget(endParent)) {
355 parentsMatch = startParent == endParent;
357 TransitionValues endValues = getMatchedTransitionValues(startParent, true);
H A DVisibility.java73 ViewGroup startParent; field in class:Visibility.VisibilityInfo
191 visInfo.startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
194 visInfo.startParent = null;
205 visInfo.startParent == visInfo.endParent) {
217 } else if (visInfo.startParent != visInfo.endParent) {
221 } else if (visInfo.startParent == null) {
242 && (visInfo.startParent != null || visInfo.endParent != null)) {
377 View startParent = (View) startView.getParent();
378 TransitionValues startParentValues = getTransitionValues(startParent, true);
379 TransitionValues endParentValues = getMatchedTransitionValues(startParent,
[all...]

Completed in 116 milliseconds