HomeSort by relevance Sort by last modified time
    Searched refs:stackBoxId (Results 1 - 8 of 8) sorted by null

  /frameworks/base/services/java/com/android/server/wm/
StackBox.java 108 * @param stackBoxId The StackBox being searched for.
111 boolean contains(int stackBoxId) {
112 return mStackBoxId == stackBoxId ||
113 (mStack == null && (mFirst.contains(stackBoxId) || mSecond.contains(stackBoxId)));
278 boolean resize(int stackBoxId, float weight) {
279 if (mStackBoxId != stackBoxId) {
281 (mFirst.resize(stackBoxId, weight) || mSecond.resize(stackBoxId, weight));
DisplayContent.java 253 throw new IllegalArgumentException("createStack: stackBoxId " + relativeStackBoxId
264 boolean resizeStack(int stackBoxId, float weight) {
267 if (box.resize(stackBoxId, weight)) {
295 info.stackBoxId = box.mStackBoxId;
WindowManagerService.java     [all...]
  /frameworks/base/cmds/am/src/com/android/commands/am/
Am.java     [all...]
  /frameworks/base/core/java/android/app/
ActivityManager.java     [all...]
IActivityManager.java 123 public void resizeStackBox(int stackBoxId, float weight) throws RemoteException;
125 public StackBoxInfo getStackBoxInfo(int stackBoxId) throws RemoteException;
    [all...]
ActivityManagerNative.java 638 int stackBoxId = data.readInt();
640 resizeStackBox(stackBoxId, weight);
655 int stackBoxId = data.readInt();
656 StackBoxInfo info = getStackBoxInfo(stackBoxId);
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java     [all...]

Completed in 75 milliseconds