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)));
274 boolean resize(int stackBoxId, float weight) {
275 if (mStackBoxId != stackBoxId) {
277 (mFirst.resize(stackBoxId, weight) || mSecond.resize(stackBoxId, weight));
DisplayContent.java 267 throw new IllegalArgumentException("createStack: stackBoxId " + relativeStackBoxId
280 boolean resizeStack(int stackBoxId, float weight) {
283 if (box.resize(stackBoxId, weight)) {
311 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 475 milliseconds