Searched defs:relativeStackBoxId (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/java/com/android/server/wm/
H A DStackBox.java163 * @param relativeStackBoxId The id of the StackBox to place the new TaskStack next to.
168 TaskStack split(int stackId, int relativeStackBoxId, int position, float weight) { argument
169 if (mStackBoxId != relativeStackBoxId) {
175 TaskStack stack = mFirst.split(stackId, relativeStackBoxId, position, weight);
179 return mSecond.split(stackId, relativeStackBoxId, position, weight);
H A DDisplayContent.java231 TaskStack createStack(int stackId, int relativeStackBoxId, int position, float weight) { argument
233 if (DEBUG_STACK) Slog.d(TAG, "createStack: stackId=" + stackId + " relativeStackBoxId="
234 + relativeStackBoxId + " position=" + position + " weight=" + weight);
247 if (box.contains(relativeStackBoxId)) {
260 newStack = box.split(stackId, relativeStackBoxId, position, weight);
267 throw new IllegalArgumentException("createStack: stackBoxId " + relativeStackBoxId
274 EventLog.writeEvent(EventLogTags.WM_STACK_CREATED, stackId, relativeStackBoxId, position,
H A DWindowManagerService.java4825 * @param relativeStackBoxId The existing stack that this stack goes before or after.
4835 public void createStack(int stackId, int relativeStackBoxId, int position, float weight) { argument
4846 TaskStack stack = displayContent.createStack(stackId, relativeStackBoxId, position,
4854 Slog.e(TAG, "createStack: Unable to find relativeStackBoxId=" + relativeStackBoxId);
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java2718 public int createStack(int taskId, int relativeStackBoxId, int position, float weight) argument
2725 data.writeInt(relativeStackBoxId);
H A DIActivityManager.java120 public int createStack(int taskId, int relativeStackBoxId, int position, float weight) argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7110 public int createStack(int taskId, int relativeStackBoxId, int position, float weight) { argument
7114 relativeStackBoxId + " position=" + position + " weight=" + weight);
7119 mWindowManager.createStack(stackId, relativeStackBoxId, position, weight);

Completed in 155 milliseconds