HomeSort by relevance Sort by last modified time
    Searched defs:reparent (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/services/core/java/com/android/server/wm/
TaskWindowContainerController.java 127 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);
AppWindowContainerController.java 261 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);
    [all...]
StackWindowController.java 92 public void reparent(int displayId, Rect outStackBounds, boolean onTop) { method in class:StackWindowController
Task.java 189 void reparent(TaskStack stack, int position, boolean moveParents) { method in class:Task
565 // Reparent to the animation layer so that we aren't clipped by the non-minimized
AppWindowToken.java 1027 void reparent(Task task, int position) { method in class:AppWindowToken
    [all...]
WindowContainer.java 125 * Indicates whether we are animating and have committed the transaction to reparent our
188 // If we have a surface but a new parent, we just need to perform a reparent. Go through
190 // mSurfaceControl stays attached to the leash and we just reparent the leash to the
    [all...]
DisplayContent.java     [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
TaskWindowContainerControllerTests.java 92 taskController.reparent(stackController1, 0, false/* moveParents */);
96 assertTrue("Should not be able to reparent to the same parent", gotException);
103 taskController.reparent(stackController3, 0, false/* moveParents */);
107 assertTrue("Should not be able to reparent to a stack that doesn't have a container",
110 taskController.reparent(stackController2, 0, false/* moveParents */);
137 // Reparent and check state
138 taskController.reparent(stack2Controller, 0, false /* moveParents */);
AppWindowContainerControllerTests.java 218 appWindowController1.reparent(taskController1, 0);
219 fail("Should not be able to reparent to the same parent");
226 appWindowController1.reparent(taskController3, 0);
227 fail("Should not be able to reparent to a task that doesn't have a container");
232 // Reparent the app window and ensure that it is moved
233 appWindowController1.reparent(taskController2, 0);
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
ActivityRecordTests.java 116 mActivity.reparent(newTask, 0, null /*reason*/);
ActivityStackTests.java 118 mTask.reparent(destStack, true /* toTop */, TaskRecord.REPARENT_KEEP_STACK_AT_FRONT,
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStarter.java     [all...]
ActivityStackSupervisor.java     [all...]
ActivityStack.java 595 // setWindowModeUnchecked() when this support is added. See TaskRecord.reparent()
677 void reparent(ActivityDisplay activityDisplay, boolean onTop) { method in class:ActivityStack
    [all...]
TaskRecord.java 180 * {@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(preferredStack, position, moveStackMode, animate, deferResume
616 boolean reparent(ActivityStack preferredStack, int position, method in class:TaskRecord
    [all...]
ActivityRecord.java 1048 void reparent(TaskRecord newTask, int position, String reason) { method in class:ActivityRecord
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 411 SurfaceComposerClient::Transaction& SurfaceComposerClient::Transaction::reparent( function in class:android::SurfaceComposerClient::Transaction
  /frameworks/base/core/java/android/view/
SurfaceControl.java 785 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
    [all...]
  /frameworks/native/services/surfaceflinger/
Layer.cpp 1594 bool Layer::reparent(const sp<IBinder>& newParentHandle) { function in class:android::Layer
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xproto.h 1098 } reparent;
1095 } reparent; member in union:_xEvent::__anon61491
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
R.java 2093 public static final int reparent = 0; field in class:R
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-0.jar 
android-all-o-preview-4-robolectric-0.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 3210 milliseconds

1 2