HomeSort by relevance Sort by last modified time
    Searched defs:startParent (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/android/transition/
ChangeBounds.java 260 private boolean parentMatches(View startParent, View endParent) {
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)) {
ChangeTransform.java 234 ViewGroup startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
236 boolean handleParentChange = mReparent && !parentsMatch(startParent, endParent);
354 private boolean parentsMatch(ViewGroup startParent, ViewGroup endParent) {
356 if (!isValidTarget(startParent) || !isValidTarget(endParent)) {
357 parentsMatch = startParent == endParent;
359 TransitionValues endValues = getMatchedTransitionValues(startParent, true);
Visibility.java 85 ViewGroup startParent;
196 visInfo.startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
199 visInfo.startParent = null;
210 visInfo.startParent == visInfo.endParent) {
222 } else if (visInfo.startParent != visInfo.endParent) {
226 } else if (visInfo.startParent == null) {
247 && (visInfo.startParent != null || visInfo.endParent != null)) {
376 View startParent = (View) startView.getParent();
377 TransitionValues startParentValues = getTransitionValues(startParent, true);
378 TransitionValues endParentValues = getMatchedTransitionValues(startParent,
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
ChangeBounds.java 244 private boolean parentMatches(View startParent, View endParent) {
247 TransitionValues endValues = getMatchedTransitionValues(startParent, true);
249 parentMatches = startParent == endParent;
266 ViewGroup startParent = (ViewGroup) startParentVals.get(PROPNAME_PARENT);
268 if (startParent == null || endParent == null) {
272 if (parentMatches(startParent, endParent)) {
Visibility.java 353 View startParent = (View) startView.getParent();
354 TransitionValues startParentValues = getTransitionValues(startParent, true);
355 TransitionValues endParentValues = getMatchedTransitionValues(startParent,
361 startParent);
362 } else if (startParent.getParent() == null) {
363 int id = startParent.getId();
ChangeTransform.java 246 ViewGroup startParent = (ViewGroup) startValues.values.get(PROPNAME_PARENT);
248 boolean handleParentChange = mReparent && !parentsMatch(startParent, endParent);
274 startParent.endViewTransition(startValues.view);
369 private boolean parentsMatch(ViewGroup startParent, ViewGroup endParent) {
371 if (!isValidTarget(startParent) || !isValidTarget(endParent)) {
372 parentsMatch = startParent == endParent;
374 TransitionValues endValues = getMatchedTransitionValues(startParent, true);

Completed in 125 milliseconds