Searched defs:reparent (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DChangeBounds.java222 * @param reparent true if the transition should track the parent
228 public void setReparent(boolean reparent) { argument
229 mReparent = reparent;
H A DChangeTransform.java173 * @param reparent Set to true to track parent changes or false to only track changes
177 public void setReparent(boolean reparent) { argument
178 mReparent = reparent;
/frameworks/base/services/core/java/com/android/server/wm/
H A DStackWindowController.java92 public void reparent(int displayId, Rect outStackBounds, boolean onTop) { method in class:StackWindowController
H A DTaskWindowContainerController.java127 public void reparent(StackWindowController stackController, int position, boolean moveParents) { method in class:TaskWindowContainerController
129 if (DEBUG_STACK) Slog.i(TAG_WM, "reparent: moving taskId=" + mTaskId
133 "reparent: could not find taskId=" + mTaskId);
138 throw new IllegalArgumentException("reparent: could not find stack="
141 mContainer.reparent(stack, position, moveParents);
H A DSurfaceAnimator.java43 * animation will be invoked, at which we reparent the children back to the original parent.
201 void reparent(Transaction t, SurfaceControl newParent) { method in class:SurfaceAnimator
202 t.reparent(mLeash != null ? mLeash : mAnimatable.getSurfaceControl(), newParent.getHandle());
231 t.reparent(surface, mLeash.getHandle());
232 t.reparent(mLeash, parent.getHandle());
274 // If the surface was destroyed, we don't care to reparent it back.
278 t.reparent(surface, parent.getHandle());
311 t.reparent(surface, leash.getHandle());
H A DAppWindowContainerController.java261 public void reparent(TaskWindowContainerController taskController, int position) { method in class:AppWindowContainerController
263 if (DEBUG_ADD_REMOVE) Slog.i(TAG_WM, "reparent: moving app token=" + mToken
267 "reparent: could not find app token=" + mToken);
272 throw new IllegalArgumentException("reparent: could not find task="
275 mContainer.reparent(task, position);
H A DTask.java189 void reparent(TaskStack stack, int position, boolean moveParents) { method in class:Task
H A DAppWindowToken.java796 // If we reparent, make sure to remove ourselves from the old animation registry.
1027 void reparent(Task task, int position) { method in class:AppWindowToken
1882 t.reparent(mSurfaceControl, newParent.getHandle());
/frameworks/support/leanback/src/main/java/androidx/leanback/transition/
H A DTransitionHelper.java152 public static Object createChangeBounds(boolean reparent) { argument
155 changeBounds.setReparent(reparent);
/frameworks/support/transition/src/main/java/androidx/transition/
H A DChangeTransform.java115 "reparent", Styleable.ChangeTransform.REPARENT, true);
180 * @param reparent Set to true to track parent changes or false to only track changes
183 public void setReparent(boolean reparent) { argument
184 mReparent = reparent;
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp411 SurfaceComposerClient::Transaction& SurfaceComposerClient::Transaction::reparent( function in class:android::SurfaceComposerClient::Transaction
/frameworks/native/services/surfaceflinger/
H A DLayer.cpp1594 bool Layer::reparent(const sp<IBinder>& newParentHandle) { function in class:android::Layer
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java785 public void reparent(IBinder newParentHandle) { method in class:SurfaceControl
787 sGlobalTransaction.reparent(this, newParentHandle);
1506 public Transaction reparent(SurfaceControl sc, IBinder newParentHandle) { method in class:SurfaceControl.Transaction
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java180 * {@link TaskRecord#reparent}.
569 * Convenience method to reparent a task to the top or bottom position of the stack.
571 boolean reparent(ActivityStack preferredStack, boolean toTop, method in class:TaskRecord
574 return reparent(preferredStack, toTop ? MAX_VALUE : 0, moveStackMode, animate, deferResume,
579 * Convenience method to reparent a task to the top or bottom position of the stack, with
582 boolean reparent(ActivityStack preferredStack, boolean toTop, method in class:TaskRecord
585 return reparent(preferredStack, toTop ? MAX_VALUE : 0, moveStackMode, animate,
589 /** Convenience method to reparent a task to a specific position of the stack. */
590 boolean reparent(ActivityStack preferredStack, int position, method in class:TaskRecord
593 return reparent(preferredStac
616 boolean reparent(ActivityStack preferredStack, int position, method in class:TaskRecord
[all...]
H A DActivityRecord.java1048 void reparent(TaskRecord newTask, int position, String reason) { method in class:ActivityRecord
1055 // TODO: Ensure that we do not directly reparent activities across stacks, as that may leave
1056 // the stacks in strange states. For now, we should use Task.reparent() to ensure that
1064 // Must reparent first in window manager
1065 mWindowContainerController.reparent(newTask.getWindowContainerController(), position);
H A DActivityStack.java595 // setWindowModeUnchecked() when this support is added. See TaskRecord.reparent()
677 void reparent(ActivityDisplay activityDisplay, boolean onTop) { method in class:ActivityStack
684 mWindowContainerController.reparent(activityDisplay.mDisplayId, mTmpRect2, onTop);
686 adjustFocusToNextFocusableStack("reparent", true /* allowFocusSelf */);
3124 p.reparent(targetTask, 0 /* position - bottom */, "resetTargetTaskIfNeeded");
3255 p.reparent(task, taskInsertionPoint, "resetAffinityTaskIfNeededLocked");
3296 * for remaining tasks. Used for later tasks to reparent to task. */

Completed in 246 milliseconds